10 lines
352 B
TypeScript
10 lines
352 B
TypeScript
import React, { FC } from 'react'
|
|
import { Button as AntdButton, ButtonProps as AntdButtonProps } from 'antd'
|
|
|
|
export type ButtonProps = Omit<AntdButtonProps, 'danger' | 'ghost' | 'shape' | 'size' | 'type'> & {
|
|
type?: 'primary' | 'link' | 'text'
|
|
}
|
|
export const Button: FC<ButtonProps> = (props) => {
|
|
return <AntdButton type="primary" {...props} />
|
|
}
|