import { IconComponent } from "./Icon"; import { COLORS } from '@/utils/Colors'; const Heart: IconComponent = ({ size = 24, filled, color = 'default' }) => ( {filled ? : } ); export default Heart;