diff --git a/src/ProCard/Card/style.ts b/src/ProCard/Card/style.ts index 1f0a4cd8..d2c4099a 100644 --- a/src/ProCard/Card/style.ts +++ b/src/ProCard/Card/style.ts @@ -13,7 +13,7 @@ export const useStyles = createStyles(({ css, token, prefixCls }) => { color: ${token.colorText}; background: ${token.colorBgContainer}; - border-radius: ${token.borderRadiusLG}px; + border-radius: ${token.borderRadius * 2}px; box-shadow: ${token.boxShadowTertiary}; `, bordered: css` diff --git a/src/ProCard/Header/index.tsx b/src/ProCard/Header/index.tsx index 882366cb..f8866c3a 100644 --- a/src/ProCard/Header/index.tsx +++ b/src/ProCard/Header/index.tsx @@ -1,6 +1,7 @@ -import { MoreOutlined } from '@ant-design/icons'; +import { Icon } from '@lobehub/ui'; import { Avatar, Button, Dropdown, Flex } from 'antd'; import type { AvatarProps, DropDownProps } from 'antd'; +import { EllipsisVertical } from 'lucide-react'; import React from 'react'; import Typography from '@/Typography'; @@ -52,7 +53,9 @@ export const ProCardHeader: React.FC = props => { onClick={e => e.stopPropagation()} > - {extraChildren ||