import { InformationCircleIcon } from '@heroicons/react/24/outline' import clsx from 'clsx' import { type ReactNode } from 'react' export default function Notice({ children }: { readonly children: ReactNode }) { return (
{children}
) }