import { FC } from "react"; export type ArtistProps = { size?: number; color?: string; width?: number; height?: number; }; const Artist: FC = ({ size = 24, color = "#000", ...props }) => ( ); export default Artist;