Skip to content

Commit

Permalink
feat: Add dry run icon (#562)
Browse files Browse the repository at this point in the history
  • Loading branch information
maciaszczykm authored Jan 18, 2024
1 parent e7d62b7 commit 74b5cb1
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/DryRunIcon.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="M9 6.54331V1.39331H5V6.54331C5 7.09956 4.84688 7.64331 4.55625 8.11519L3.15313 10.3933H10.8469L9.44687 8.11519C9.15312 7.64331 9 7.09956 9 6.54331ZM4 1.39331H3.5C3.225 1.39331 3 1.16831 3 0.893311C3 0.618311 3.225 0.393311 3.5 0.393311H5H9H10.5C10.775 0.393311 11 0.618311 11 0.893311C11 1.16831 10.775 1.39331 10.5 1.39331H10V6.54331C10 6.91206 10.1031 7.27769 10.2969 7.59019L13.6781 13.0871C13.8875 13.4277 14 13.8214 14 14.2246C14 15.4214 13.0281 16.3933 11.8313 16.3933H2.16875C0.971875 16.3933 0 15.4214 0 14.2246C0 13.8246 0.1125 13.4308 0.321875 13.0871L3.70312 7.59331C3.89687 7.27769 4 6.91519 4 6.54644V1.39331ZM1.17188 13.6121C1.05938 13.7964 1 14.0089 1 14.2246C1 14.8714 1.52188 15.3933 2.16875 15.3933H11.8313C12.4781 15.3933 13 14.8714 13 14.2246C13 14.0089 12.9406 13.7964 12.8281 13.6121L11.4625 11.3933H2.5375L1.17188 13.6121Z"
fill={color}
/>
</svg>
))
1 change: 1 addition & 0 deletions src/icons.ts
Original file line number Diff line number Diff line change
Expand Up @@ -57,6 +57,7 @@ export { default as DocumentIcon } from './components/icons/DocumentIcon'
export { default as DomainsIcon } from './components/icons/DomainsIcon'
export { default as DownloadIcon } from './components/icons/DownloadIcon'
export { default as DropdownArrowIcon } from './components/icons/DropdownArrowIcon'
export { default as DryRunIcon } from './components/icons/DryRunIcon'
export { default as EditIcon } from './components/icons/EditIcon'
export { default as EmojiHoverIcon } from './components/icons/EmojiHoverIcon'
export { default as EmojiIcon } from './components/icons/EmojiIcon'
Expand Down

0 comments on commit 74b5cb1

Please sign in to comment.