import React, { forwardRef } from 'react'; import { cn } from '../../lib/utils'; interface FeatureShowcaseProps extends React.HTMLAttributes { heading: React.ReactNode; icon?: React.ReactNode; } export const FeatureShowcase = forwardRef( function FeatureShowcaseComponent( { className, heading, icon, children, ...props }, ref, ) { return (
{icon &&
{icon}
}

{heading}

{children}
); }, ); export function FeatureShowcaseIconContainer( props: React.PropsWithChildren<{ className?: string; }>, ) { return (
{props.children}
); }