import type { IconProps } from '@/registry/icons/icon'; import React from 'react'; export const IconShowcase = ({ icon: Icon, displayTitle = true, ...props }: { icon: React.ComponentType>; displayTitle?: boolean; } & IconProps) => { return (
{props.animation && displayTitle ? (

{props.animation}

) : null}
); };