Skip to content

Commit

Permalink
feat(icons): updates BoxIcon
Browse files Browse the repository at this point in the history
  • Loading branch information
kirtesh-xola committed Mar 7, 2024
1 parent 685dadc commit 6d866d5
Showing 1 changed file with 19 additions and 13 deletions.
32 changes: 19 additions & 13 deletions src/icons/src/BoxIcon.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -3,19 +3,25 @@ import { createIcon } from "./helpers/icon";

export const BoxIcon = createIcon((props) => {
return (
<svg viewBox="0 0 14 14" width={14} height={14} fill="none" xmlns="http://www.w3.org/2000/svg" {...props}>
<path
d="M11.679 3.947a.428.428 0 01.321.417V9.8a.429.429 0 01-.3.408l-4.771 1.59h-.005a.461.461 0 01-.286-.005l-4.351-1.585A.435.435 0 012 9.8V4.347a.424.424 0 01.321-.422l4.56-1.185v-.004a.37.37 0 01.217 0l4.58 1.211zM6.794 5.345v6.513"
stroke="currentColor"
strokeLinecap="round"
strokeLinejoin="round"
/>
<path
d="M11.885 4.069L6.794 5.34l-4.66-1.272"
stroke="currentColor"
strokeLinecap="round"
strokeLinejoin="round"
/>
<svg width={14} height={14} viewBox="0 0 14 14" fill="none" xmlns="http://www.w3.org/2000/svg" {...props}>
<g clipPath="url(#clip0_1621_3066)">
<path
fillRule="evenodd"
clipRule="evenodd"
d="M12.25 9.35723V4.64273C12.25 4.22564 12.0277 3.84065 11.6667 3.6324L7.58333 1.27515C7.22225 1.0669 6.77775 1.0669 6.41667 1.27515L2.33333 3.63181C1.97225 3.84064 1.75 4.22564 1.75 4.64273V9.35781C1.75 9.77489 1.97225 10.1599 2.33333 10.3681L6.41667 12.7254C6.77775 12.9336 7.22225 12.9336 7.58333 12.7254L11.6667 10.3681C12.0277 10.1593 12.25 9.77431 12.25 9.35723Z"
stroke="currentColor"
strokeLinecap="round"
strokeLinejoin="round"
/>
<path d="M7 12.88V7" stroke="currentColor" strokeLinecap="round" strokeLinejoin="round" />
<path d="M7 7L12.0925 4.06" stroke="currentColor" strokeLinecap="round" strokeLinejoin="round" />
<path d="M1.90723 4.06L6.99973 7" stroke="currentColor" strokeLinecap="round" strokeLinejoin="round" />
</g>
<defs>
<clipPath id="clip0_1621_3066">
<rect width="14" height="14" fill="white" />
</clipPath>
</defs>
</svg>
);
});
Expand Down

0 comments on commit 6d866d5

Please sign in to comment.