divider — independently scanned and version-tracked by SaferSkills.
SaferSkills independently audited divider (Agent Skill) and scored it 100/100 (green). The audit ran 55 deterministic rules across Security, Supply Chain, Maintenance, Transparency, and Community; it found 0 high-severity and 0 lower-severity findings. The full rule-by-rule trace and per-finding evidence are below. Free, methodology-open.
Findings & checks · 0 flagged
Every scanned point with the score it earned and what moved between them.
First recorded scan — no prior version to compare against.
The primary manifest — the file an agent reads to learn what this artifact does.
Visual separator line. Renders as <hr>. Supports horizontal/vertical orientation and variant colors.
import { Divider } from 'reablocks';| Prop | Type | Default | Description | |
|---|---|---|---|---|
orientation | `'horizontal' \ | 'vertical'` | 'horizontal' | Divider direction |
variant | `'primary' \ | 'secondary'` | 'primary' | Color variant |
disableMargins | boolean | false | Remove default margins | |
className | string | — | Additional CSS classes | |
style | CSSProperties | — | Inline styles | |
theme | DividerTheme | — | Per-instance theme override |
<Divider /><div className="flex h-16 items-center gap-4">
<span>Left</span>
<Divider orientation="vertical" />
<span>Right</span>
</div><Divider variant="primary" /> {/* Solid bg-surface */}
<Divider variant="secondary" /> {/* Gradient via-blue-500 */}interface DividerTheme {
base: string; // Base (border-none)
orientation: {
horizontal: string; // h-px, w-full, my-2.5
vertical: string; // w-px, h-full, mx-2.5
};
variant: {
primary: string; // Solid color
secondary: string; // Gradient
};
disableMargins: string; // No margins
}~30 seconds. Free. No account. Every finding cites a rule and a line of evidence.