import * as React from "react"; export type PlayProps = { color?: string; small?: boolean; }; const Play: React.FC = ({ color = "#000", small = false, ...props }) => ( {!small && ( )} {small && ( )} ); export default Play;