Skip to content

Commit

Permalink
feat: Add CloseRoundedIcon (#542)
Browse files Browse the repository at this point in the history
  • Loading branch information
dogmar authored Nov 20, 2023
1 parent 4c231c0 commit a4733fa
Show file tree
Hide file tree
Showing 2 changed files with 16 additions and 0 deletions.
15 changes: 15 additions & 0 deletions src/components/icons/CloseRoundedIcon.tsx
Original file line number Diff line number Diff line change
@@ -0,0 +1,15 @@
import createIcon from './createIcon'

export default createIcon(({ size, color }) => (
<svg
width={size}
viewBox="0 0 16 16"
fill="none"
xmlns="http://www.w3.org/2000/svg"
>
<path
d="m8 0c-4.41829427 0-8 3.58170573-8 8s3.58170573 8 8 8 8-3.58170573 8-8-3.58170573-8-8-8zm4.47135417 11.52864583-.94270833.94270833-3.52864583-3.52864583-3.52864583 3.52864583-.94270833-.94270833 3.52864583-3.52864583-3.52864583-3.52864583.94270833-.94270833 3.52864583 3.52864583 3.52864583-3.52864583.94270833.94270833-3.52864583 3.52864583z"
fill={color}
/>
</svg>
))
1 change: 1 addition & 0 deletions src/icons.ts
Original file line number Diff line number Diff line change
Expand Up @@ -34,6 +34,7 @@ export { default as CheckRoundedIcon } from './components/icons/CheckRoundedIcon
export { default as ChronjobIcon } from './components/icons/ChronjobIcon'
export { default as CliIcon } from './components/icons/CliIcon'
export { default as CloseIcon } from './components/icons/CloseIcon'
export { default as CloseRoundedIcon } from './components/icons/CloseRoundedIcon'
export { default as CloudIcon } from './components/icons/CloudIcon'
export { default as ClusterIcon } from './components/icons/ClusterIcon'
export { default as CollapseIcon } from './components/icons/CollapseIcon'
Expand Down

0 comments on commit a4733fa

Please sign in to comment.