import type { ReactNode } from 'react' import { cn } from '@/lib/cn' interface InlineNoticeProps { children: ReactNode className?: string } /** * Compact form/page notice for lock banners, pending-revision hints, etc. */ const InlineNotice = ({ children, className }: InlineNoticeProps) => (
{children}
) export default InlineNotice