import * as React from "react"; export type HeartProps = { size?: number; color?: string; width?: number; height?: number; }; const Heart: React.FC = ({ size = 20, color = "#ab28fc", ...props }) => ( ); export default Heart;