import * as React from "react"; import type { FC } from "react"; interface IconProps { size?: number; } export const HeartIcon: FC = ({ size = 14 }) => ( );