adapting and shit
This commit is contained in:
@@ -0,0 +1,13 @@
|
||||
import { Button as AntButton, ButtonProps } from 'antd'
|
||||
import React from 'react'
|
||||
import './style.scss'
|
||||
|
||||
type Props = ButtonProps
|
||||
|
||||
export const Button = ({ children, htmlType }: Props) => {
|
||||
return (
|
||||
<AntButton className="dank-button" htmlType={htmlType}>
|
||||
{children}
|
||||
</AntButton>
|
||||
)
|
||||
}
|
||||
Reference in New Issue
Block a user