Skip to content

Commit

Permalink
馃拕 style(ActionIconGroup): support size prop (#159)
Browse files Browse the repository at this point in the history
  • Loading branch information
huangkairan committed May 30, 2024
1 parent d4053bc commit 2d977fa
Show file tree
Hide file tree
Showing 2 changed files with 14 additions and 4 deletions.
4 changes: 4 additions & 0 deletions src/ActionIconGroup/demos/index.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -16,6 +16,10 @@ export default () => {
options: ['row', 'column'],
value: 'row',
},
size: {
options: ['small', 'normal', 'large'],
value: 'small',
},
spotlight: true,
type: {
options: ['ghost', 'block', 'pure'],
Expand Down
14 changes: 10 additions & 4 deletions src/ActionIconGroup/index.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ import { memo } from 'react';
import { Flexbox } from 'react-layout-kit';

import ActionIcon, { type ActionIconProps } from '@/ActionIcon';
import Icon from '@/Icon';
import Icon, { IconSizeType } from '@/Icon';
import Spotlight from '@/Spotlight';
import { DivProps } from '@/types';

Expand Down Expand Up @@ -46,6 +46,11 @@ export interface ActionIconGroupProps extends DivProps {
* @enum ["top","left","right","bottom","topLeft","topRight","bottomLeft","bottomRight","leftTop","leftBottom","rightTop","rightBottom"]
*/
placement?: ActionIconProps['placement'];
/**
* @description The size of the group
* @default "small"
*/
size?: IconSizeType;
/**
* @description Whether to add a spotlight background
* @default true
Expand All @@ -67,6 +72,7 @@ const ActionIconGroup = memo<ActionIconGroupProps>(
direction = 'row',
dropdownMenu = [],
onActionClick,
size = 'small',
...rest
}) => {
const { styles } = useStyles({ type });
Expand All @@ -88,7 +94,7 @@ const ActionIconGroup = memo<ActionIconGroupProps>(
: undefined
}
placement={tooltipsPlacement}
size="small"
size={size}
title={item.label}
/>
))}
Expand All @@ -100,7 +106,7 @@ const ActionIconGroup = memo<ActionIconGroupProps>(
return {
...item,
disabled: item.disable,
icon: <Icon icon={item.icon} size="small" />,
icon: <Icon icon={item.icon} size={size} />,
onClick: onActionClick
? (info: ActionEvent) =>
onActionClick({
Expand All @@ -118,7 +124,7 @@ const ActionIconGroup = memo<ActionIconGroupProps>(
icon={MoreHorizontal}
key="more"
placement={tooltipsPlacement}
size="small"
size={size}
/>
</Dropdown>
)}
Expand Down

0 comments on commit 2d977fa

Please sign in to comment.