| 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 ) => ( | |
| <div | |
| className={ clsx( { | |
| ribbon: true, | |
| 'is-green': props.color === 'green', | |
| } ) } | |
| > | |
| <span className="ribbon__title">{ props.children }</span> | |
| </div> | |
| ); | |
| export default Ribbon; | |