Skip to content

Commit 6d59869

Browse files
authored
feat: add pending outline icon (#724)
1 parent 77addff commit 6d59869

File tree

2 files changed

+27
-0
lines changed

2 files changed

+27
-0
lines changed
Lines changed: 26 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,26 @@
1+
import createIcon from './createIcon'
2+
3+
export default createIcon(({ size, color }) => (
4+
<svg
5+
width={size}
6+
height={size}
7+
viewBox="0 0 12 12"
8+
>
9+
<path
10+
d="M6 0.5C9.02386 0.5 11.5 2.97614 11.5 6C11.5 9.02386 9.02386 11.5 6 11.5C2.97614 11.5 0.5 9.02386 0.5 6C0.5 2.97614 2.97614 0.5 6 0.5Z"
11+
stroke={color}
12+
/>
13+
<path
14+
d="M2.77539 6.00007C2.77539 6.37507 3.07539 6.67507 3.45039 6.67507C3.82539 6.67507 4.20039 6.37507 4.12539 6.00007C4.12539 5.62507 3.82539 5.32507 3.45039 5.32507C3.07539 5.32507 2.77539 5.62507 2.77539 6.00007Z"
15+
fill={color}
16+
/>
17+
<path
18+
d="M5.32539 6.00007C5.32539 6.37507 5.62539 6.67507 6.00039 6.67507C6.37539 6.67507 6.67539 6.37507 6.67539 6.00007C6.67539 5.62507 6.37539 5.32507 6.00039 5.32507C5.62539 5.32507 5.32539 5.62507 5.32539 6.00007Z"
19+
fill={color}
20+
/>
21+
<path
22+
d="M7.87539 6.00007C7.87539 6.37507 8.17539 6.67507 8.55039 6.67507C8.92539 6.67507 9.22539 6.37507 9.22539 6.00007C9.22539 5.62507 8.92539 5.32507 8.55039 5.32507C8.17539 5.32507 7.87539 5.62507 7.87539 6.00007Z"
23+
fill={color}
24+
/>
25+
</svg>
26+
))

src/icons.ts

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -163,6 +163,7 @@ export { default as PagerdutyLogoIcon } from './components/icons/PagerdutyLogoIc
163163
export { default as PaperclipIcon } from './components/icons/PaperclipIcon'
164164
export { default as PauseIcon } from './components/icons/PauseIcon'
165165
export { default as PencilIcon } from './components/icons/PencilIcon'
166+
export { default as PendingOutlineIcon } from './components/icons/PendingOutlineIcon'
166167
export { default as PeopleIcon } from './components/icons/PeopleIcon'
167168
export { default as PeoplePlusIcon } from './components/icons/PeoplePlusIcon'
168169
export { default as PersonIcon } from './components/icons/PersonIcon'

0 commit comments

Comments
 (0)