Skip to content

Commit

Permalink
feat: Add browse apps icon (#440)
Browse files Browse the repository at this point in the history
  • Loading branch information
maciaszczykm committed Mar 21, 2023
1 parent 225e2ee commit e415e92
Show file tree
Hide file tree
Showing 2 changed files with 29 additions and 0 deletions.
28 changes: 28 additions & 0 deletions src/components/icons/BrowseAppsIcon.tsx
@@ -0,0 +1,28 @@
import createIcon from './createIcon'

export default createIcon(({ size, color }) => (
<svg
width={size}
height={size}
viewBox="0 0 16 16"
fill="none"
xmlns="http://www.w3.org/2000/svg"
>
<path
d="M0.533325 1.27145C0.533325 0.871695 0.871573 0.533447 1.27132 0.533447L6.43732 0.533448C6.83707 0.533448 7.17533 0.871696 7.17533 1.27145L7.17533 6.43744C7.17533 6.83719 6.83707 7.17544 6.43732 7.17544L1.27132 7.17544C0.871573 7.17544 0.533325 6.83719 0.533325 6.43744L0.533325 1.27145ZM0.533325 9.38944C0.533325 8.98969 0.871573 8.65145 1.27132 8.65145L6.43732 8.65145C6.83707 8.65145 7.17533 8.98969 7.17533 9.38944L7.17533 14.5554C7.17533 14.9552 6.83707 15.2934 6.43732 15.2934L1.27132 15.2934C0.871573 15.2934 0.533325 14.9552 0.533325 14.5554L0.533325 9.38944ZM8.65132 1.27145C8.65132 0.871696 8.98957 0.533448 9.38932 0.533448L14.5553 0.533448C14.9551 0.533448 15.2933 0.871696 15.2933 1.27145L15.2933 6.43744C15.2933 6.83719 14.9551 7.17544 14.5553 7.17544L9.38932 7.17544C8.98957 7.17544 8.65132 6.83719 8.65132 6.43744L8.65132 1.27145Z"
stroke={color}
strokeMiterlimit="10"
/>
<path
d="M12.451 8.68897C12.451 6.67048 10.764 5 8.72548 5C6.68701 5 5 6.67048 5 8.68897C5 10.7075 6.68701 12.3779 8.72548 12.3779C10.764 12.3779 12.451 10.7075 12.451 8.68897Z"
fill="#21242C"
stroke={color}
strokeMiterlimit="10"
/>
<path
d="M15.6137 14.7473L14.3484 16.0001L11.9585 13.6336C11.8179 13.4944 11.8179 13.2856 11.9585 13.216L13.2237 11.9631L15.6137 14.3296C15.6839 14.4688 15.6839 14.6081 15.6137 14.7473Z"
fill={color}
/>
</svg>

))
1 change: 1 addition & 0 deletions src/icons.ts
Expand Up @@ -13,6 +13,7 @@ export { default as BellIcon } from './components/icons/BellIcon'
export { default as BookIcon } from './components/icons/BookIcon'
export { default as BotIcon } from './components/icons/BotIcon'
export { default as BriefcaseIcon } from './components/icons/BriefcaseIcon'
export { default as BrowseAppsIcon } from './components/icons/BrowseAppsIcon'
export { default as BrowserIcon } from './components/icons/BrowserIcon'
export { default as BugIcon } from './components/icons/BugIcon'
export { default as BuildIcon } from './components/icons/BuildIcon'
Expand Down

0 comments on commit e415e92

Please sign in to comment.