import Image from 'next/image'; import { santas } from '@/assets/images/santa/index'; interface SantaProps { height: number; } export function Santa({ ...props }: SantaProps) { if (props.height <= 0 || props.height > 24) { return
; } return (
{'Santa'}
); }