import { PropsWithChildren } from 'react'; import { HEADLINE } from '~/ui/components/Text'; type Props = PropsWithChildren<{ label: string; }>; export const Step = ({ children, label }: Props) => { return (
{label}
{children}
); };