import { IconComponent } from "~/useColumnView"; import { Body } from "../Primitives/Body"; import { Title } from "../Primitives/Title"; export type HomeGridFeatureItemProps = { icon: IconComponent; title: string; className?: string; titleClassName?: string; children: React.ReactNode; }; export function HomeGridFeatureItem(props: HomeGridFeatureItemProps) { return (
{props.title} {props.children}
); }