File size: 195 Bytes
1e92f2d |
1 2 3 4 5 6 7 |
import { Button } from './button'
import styles from './blue-button.module.css'
export function BlueButton() {
return <Button className={'btn-blue ' + styles['blue-button']}>Button</Button>
}
|