feat(SW-2038): refactor and create wrapper for static map and button * feat(SW-2038): refactor and create wrapper for static map and button * feature: use button from design-system over creating a new one * remove unused fragment * fix(SW-2038): add removed css * fix(SW-2038): update fake button component * fix(SW-2038): move FakeButton to design system Approved-by: Erik Tiekstra Approved-by: Joakim Jäderberg
7 lines
196 B
TypeScript
7 lines
196 B
TypeScript
import { cva } from 'class-variance-authority'
|
|
|
|
import styles from './fakeButton.module.css'
|
|
import { withButton } from '../Button'
|
|
|
|
export const variants = cva(styles.fakeButton, withButton({}))
|