import React, { type FC, type PropsWithChildren } from 'react'; import { Button as CkButton } from '@chakra-ui/react'; export type ButtonProps = { /** * @description button variant type * @description.zh-CN 按钮展示类型 */ variant: 'ghost' | 'solid'; /** * @description component style * @description.zh-CN 组件样式 */ style?: React.CSSProperties; /** * @description button click event * @description.zh-CN 点击事件 */ onClick?: (event: Event) => void; }; const Button: FC> = ({ children, variant }) => { return ( {children} ); }; export default Button;