Files
cash-stacks/frontend/src/elements/Button/index.tsx
T
2021-07-13 17:47:28 -06:00

14 lines
301 B
TypeScript

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>
)
}