Skip to content

Commit

Permalink
fix(tag): make size prop type optional (#52)
Browse files Browse the repository at this point in the history
  • Loading branch information
rahmatrhd authored Jun 25, 2024
1 parent 69104c5 commit c949eb1
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion packages/apsara-ui/src/Tag/Tag.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ type TagProps = {
icon?: ReactNode;
className?: string;
style?: React.CSSProperties;
size: TagSize;
size?: TagSize;
};

const Tag = ({
Expand Down

0 comments on commit c949eb1

Please sign in to comment.