Note
Fixed fee. The number on the cover is the number on the invoice.
Adds a contextual note to running copy. 1px frame, square corners, no accent bar.
Fixed fee. The number on the cover is the number on the invoice.
Fixed fee. The number on the cover is the number on the invoice.
Three ways in. They share one source, so the pixels match whichever you pick.
npm install @noorddev/vlak-react
// once, next to your app's root
import "@noorddev/vlak-react/css";
import { Callout } from "@noorddev/vlak-react";Precompiled React and one stylesheet. No compiler to configure. Per-component imports work too: @noorddev/vlak-react/components/callout.
npx @noorddev/vlak-cli add callout
The StyleX leaf lands in components/vlak/, for your own compiler to own. See StyleX.
npx shadcn add https://vlak.dev/r/callout.json
The same registry item, installed by shadcn's CLI.
<link rel="stylesheet" href="node_modules/@noorddev/vlak/css/vlak.css" />
No React. Link vlak.css and use the markup and classes below.
import { Callout } from "@noorddev/vlak-react";
<Callout>
<p><strong>Fixed fee.</strong> The number on the cover is the number on the invoice.</p>
</Callout>Paper field, 1px hairline on all sides. Not rounded. No left bar.
Also accepts HTMLAttributes<HTMLDivElement>.
<div class="rs-callout"><p><strong>Fixed fee.</strong> The number on the cover is the number on the invoice.</p></div>