import type { ReactNode } from 'react'; import { styles } from './styles'; export function Param({ children }: { children?: ReactNode }) { return {children}; }