import { cn } from '@/lib/utils' import type { ReactNode } from 'react' export function Stamp({ children, className, skew = true, variant = 'red', }: { children: ReactNode className?: string skew?: boolean variant?: 'red' | 'ink' }) { return ( {children} ) } export function OverlayStamp({ children, className, }: { children: ReactNode className?: string }) { return ( ) } export function Redacted({ children }: { children: ReactNode }) { return {children} } export function FieldRow({ label, children, }: { label: string children: ReactNode }) { return (
{label}
{children}
) } export function SectionTitle({ index, children, }: { index: string children: ReactNode }) { return (

{index} {children}

) } export function Perforation({ className }: { className?: string }) { return ( ) }