import * as React from "react"; type Props = { /** The size of the icon, 24px is default to match standard icons */ size?: number; /** The color of the icon, defaults to the current text color */ fill?: string; }; export default function Icon({ size = 24, fill = "currentColor" }: Props) { return ( ); }