import clsx from 'clsx'; import type { ReactNode, FunctionComponent } from 'react'; import './style.scss'; type Props = { color?: 'green' | undefined; children: ReactNode; }; const Ribbon: FunctionComponent< Props > = ( props ) => (