Skip to content

Commit

Permalink
feat(icons): add Subscription icon
Browse files Browse the repository at this point in the history
  • Loading branch information
ivangabriele committed Apr 30, 2024
1 parent d6a33bb commit 77345a0
Show file tree
Hide file tree
Showing 3 changed files with 29 additions and 0 deletions.
7 changes: 7 additions & 0 deletions src/assets/icons/Subscription.svg
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
20 changes: 20 additions & 0 deletions src/icons/Subscription.tsx
Original file line number Diff line number Diff line change
@@ -0,0 +1,20 @@
import { IconBox } from '../elements/IconBox'

import type { IconProps } from '../types/definitions'

export function Subscription({ color, size, title, ...nativeProps }: IconProps) {
return (
<IconBox $color={color} $size={size} title={title}>
<svg height="20" viewBox="0 0 20 20" width="20" {...nativeProps}>
<path d="M0,0H20V20H0Z" fill="none" />
<g>
<circle cx="2" cy="2" fill="currentColor" r="2" transform="translate(3 13)" />
<path
d="M3,8v2.573A6.43,6.43,0,0,1,9.427,17H12A9,9,0,0,0,3.006,8ZM3,3V5.546A11.455,11.455,0,0,1,14.454,17H17A14.005,14.005,0,0,0,3,3Z"
fill="currentColor"
/>
</g>
</svg>
</IconBox>
)
}
2 changes: 2 additions & 0 deletions src/icons/index.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -78,6 +78,7 @@ import { SortingArrows } from './SortingArrows'
import { SortingChevrons } from './SortingChevrons'
import { SortSelectedDown } from './SortSelectedDown'
import { SortSelectedUp } from './SortSelectedUp'
import { Subscription } from './Subscription'
import { Summary } from './Summary'
import { Tag } from './Tag'
import { Target } from './Target'
Expand Down Expand Up @@ -169,6 +170,7 @@ export {
SortSelectedUp,
SortingArrows,
SortingChevrons,
Subscription,
Summary,
Tag,
Target,
Expand Down

0 comments on commit 77345a0

Please sign in to comment.