import { InfoIcon } from '@primer/octicons-react' import type { ReactNode } from 'react' import { cn } from '~/utils/cn' interface Props { className?: string children: ReactNode } export default function Notice({ children, className }: Props) { return (
{children}
) }