import type { FC } from 'react'; export interface CowProps { className?: string; } export const Cow: FC = ({ className }) => ( );