Skip to content

Commit

Permalink
chore: Command Icon (#479)
Browse files Browse the repository at this point in the history
  • Loading branch information
michaeljguarino authored Jun 1, 2023
1 parent 6bdbca1 commit b93b2c7
Show file tree
Hide file tree
Showing 2 changed files with 44 additions and 0 deletions.
43 changes: 43 additions & 0 deletions src/components/icons/CommandIcon.tsx
Original file line number Diff line number Diff line change
@@ -0,0 +1,43 @@
import createIcon from './createIcon'

export default createIcon(({ size, color }) => (
<svg
width={size}
viewBox="0 0 18 18"
fill="none"
xmlns="http://www.w3.org/2000/svg"
>
<path
d="M6.30501 11.878V3.65817C6.30269 2.95522 6.02168 2.28183 5.52315 1.78617C5.02463 1.29026 4.34978 1.01271 3.64683 1.01417C2.94388 1.01562 2.2702 1.29605 1.774 1.79399C1.27751 2.29164 0.999419 2.96619 1 3.66944C1.00087 4.37239 1.28044 5.04636 1.77779 5.54314C2.27513 6.03992 2.94941 6.31889 3.65236 6.31889H6.23425"
stroke={color}
strokeLinecap="round"
strokeLinejoin="round"
/>
<path
d="M11.6852 11.8638V3.64401C11.6875 2.94106 11.9686 2.26767 12.4671 1.77201C12.9656 1.2761 13.6405 0.998551 14.3434 1.00001C15.0464 1.00146 15.72 1.28189 16.2162 1.77983C16.7127 2.27748 16.9908 2.95203 16.9902 3.65528C16.9894 4.35823 16.7098 5.0322 16.2124 5.52898C15.7151 6.02576 15.0408 6.30473 14.3379 6.30473H11.756"
stroke={color}
strokeLinecap="round"
strokeLinejoin="round"
/>
<path
d="M6.30501 11.878V14.3477C6.30501 15.0513 6.02545 15.7255 5.5281 16.2232C5.03074 16.7205 4.35589 17.0001 3.65236 17.0001C2.94912 17.0001 2.27427 16.7205 1.77691 16.2232C1.27955 15.7255 1 15.051 1 14.3474C1 13.6439 1.27956 12.9693 1.77691 12.472C2.27427 11.9743 2.94912 11.6951 3.65236 11.6951H6.30501"
stroke={color}
strokeLinecap="round"
strokeLinejoin="round"
/>
<path
d="M11.6816 12.3229V14.3477C11.6816 15.0513 11.9612 15.7255 12.4586 16.2232C12.9559 16.7205 13.6308 17.0001 14.3343 17.0001C15.0375 17.0001 15.7124 16.7205 16.2097 16.2232C16.7071 15.7255 16.9867 15.051 16.9867 14.3474C16.9867 13.6439 16.7071 12.9693 16.2097 12.472C15.7124 11.9743 15.0375 11.6951 14.3343 11.6951H11.7564"
stroke={color}
strokeLinecap="round"
strokeLinejoin="round"
/>
<path
d="M6.2832 6.28979H11.8234"
stroke={color}
/>
<path
d="M6.2832 11.6907H11.8234"
stroke={color}
/>
</svg>
))
1 change: 1 addition & 0 deletions src/icons.ts
Original file line number Diff line number Diff line change
Expand Up @@ -35,6 +35,7 @@ export { default as CloseIcon } from './components/icons/CloseIcon'
export { default as CloudIcon } from './components/icons/CloudIcon'
export { default as ClusterIcon } from './components/icons/ClusterIcon'
export { default as CollapseIcon } from './components/icons/CollapseIcon'
export { default as CommandIcon } from './components/icons/CommandIcon'
export { default as CompassIcon } from './components/icons/CompassIcon'
export { default as ComponentsIcon } from './components/icons/ComponentsIcon'
export { default as ComputerNodeIcon } from './components/icons/ComputerNodeIcon'
Expand Down

0 comments on commit b93b2c7

Please sign in to comment.