import { Button as AntButton, ButtonProps } from 'antd' import React from 'react' import './style.scss' type Props = ButtonProps export const Button = ({ children, htmlType }: Props) => { return ( {children} ) }