import Typography, { TypographyProps, } from "@/components/ui/Typography/Typography"; import TextList from "@/components/widgets/TextList/TextList"; import { cn } from "@/lib/utils"; interface TryForDaysProps extends Omit, "title"> { title?: TypographyProps<"h3">; textListProps?: React.ComponentProps; } export default function TryForDays({ title, textListProps, ...props }: TryForDaysProps) { return (
{title && ( )} {textListProps && ( } {...textListProps} className={cn( "mt-[17px] pl-[37px] space-y-3", textListProps.className )} /> )}
); }