Skip to content

Commit 7bebc14

Browse files
committed
feat: add azure devops icon
1 parent 661fc85 commit 7bebc14

File tree

2 files changed

+19
-0
lines changed

2 files changed

+19
-0
lines changed
Lines changed: 18 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,18 @@
1+
import createIcon from './createIcon'
2+
export default createIcon(({ size, color, fullColor }) => {
3+
return (
4+
<svg
5+
xmlns="http://www.w3.org/2000/svg"
6+
width={size}
7+
height={size}
8+
viewBox="0 0 365 365"
9+
>
10+
<g
11+
fill={fullColor ? '#0078D7' : color}
12+
fillRule="evenodd"
13+
>
14+
<path d="M273.32 82.016 35.859 125.735v116.408L0 237.278V133.574l35.858-47.19 124.868-48.986L160.26 0zm0 0v193.776l-237.463-32.1 100.325 117.462v-43.595l137.137 43.595 90.033-74.456V65.16z"></path>
15+
</g>
16+
</svg>
17+
)
18+
})

src/icons.ts

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -11,6 +11,7 @@ export { default as ArrowRightIcon } from './components/icons/ArrowRightIcon'
1111
export { default as ArrowRightLeftIcon } from './components/icons/ArrowRightLeftIcon'
1212
export { default as ArrowTopRightIcon } from './components/icons/ArrowTopRightIcon'
1313
export { default as AwsLogoIcon } from './components/icons/AwsLogoIcon'
14+
export { default as AzureDevopsLogoIcon } from './components/icons/AzureDevopsLogoIcon'
1415
export { default as AzureLogoIcon } from './components/icons/AzureLogoIcon'
1516
export { default as BellIcon } from './components/icons/BellIcon'
1617
export { default as BitBucketIcon } from './components/icons/BitBucketIcon'

0 commit comments

Comments
 (0)