/** * A deliberately imperfect checkmark: two uneven bezier strokes instead of * crisp straight lines, so it reads as drawn rather than rendered. The * upstroke's tip ends above y=0 in the viewBox on purpose -- rendered with * `overflow-visible` at roughly the checkbox's own size, only that tip * pokes out the top of the box, while the rest stays flush inside it. */ export function HandDrawnCheck({ className }: { className?: string }) { return ( ); }