Skip to content

Commit

Permalink
fix(next): fix missing ExclamationCircleOutlined Icon (#2564)
Browse files Browse the repository at this point in the history
  • Loading branch information
ifblooms authored Dec 3, 2021
1 parent 8f8db67 commit 33d8d27
Showing 1 changed file with 6 additions and 1 deletion.
7 changes: 6 additions & 1 deletion packages/next/src/__builtins__/icons.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -88,7 +88,12 @@ export const CheckCircleOutlinedIcon: IconType = React.forwardRef(
)
)
export const ExclamationCircleOutlinedIcon: IconType = React.forwardRef(
(props, ref) => <Icon {...props} ref={ref}></Icon>
(props, ref) => (
<Icon {...props} ref={ref}>
<path d="M512 64C264.6 64 64 264.6 64 512s200.6 448 448 448 448-200.6 448-448S759.4 64 512 64zm0 820c-205.4 0-372-166.6-372-372s166.6-372 372-372 372 166.6 372 372-166.6 372-372 372z"></path>
<path d="M464 688a48 48 0 1096 0 48 48 0 10-96 0zm24-112h48c4.4 0 8-3.6 8-8V296c0-4.4-3.6-8-8-8h-48c-4.4 0-8 3.6-8 8v272c0 4.4 3.6 8 8 8z"></path>
</Icon>
)
)

export const EditOutlinedIcon: IconType = React.forwardRef((props, ref) => (
Expand Down

0 comments on commit 33d8d27

Please sign in to comment.