feat: add ColorSelect

This commit is contained in:
Daniel Soares
2021-12-14 14:18:50 -03:00
parent b42c3a402a
commit 2f4dd0097b
10 changed files with 177 additions and 144 deletions

View File

@@ -5,10 +5,10 @@ import { Wrapper } from './styles'
type ButtonProps = ButtonHTMLAttributes<HTMLButtonElement> & {
children: ReactNode
theme?: ButtonVariantProps['theme']
schema?: ButtonVariantProps['schema']
outline?: ButtonVariantProps['outline']
colorSchema?: ButtonVariantProps['colorSchema']
styleSchema?: ButtonVariantProps['styleSchema']
font?: ButtonVariantProps['font']
outline?: ButtonVariantProps['outline']
}
export function Button({ children, ...rest }: ButtonProps) {