import type { CSSProperties } from 'react' interface Props { size?: string | number style?: CSSProperties className?: string } /** Reusable gerbil silhouette icon — upright sitting pose, long tail with tuft. fill=currentColor. */ export default function GerbilIcon({ size = '1em', style, className }: Props) { return ( {/* body — sitting upright */} {/* ear */} {/* hind paw */} {/* long curved tail with tuft */} {/* front paw */} ) }