-
Notifications
You must be signed in to change notification settings - Fork 21
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
feat(icons): add CategoriesClothesOutline
- Loading branch information
1 parent
a38aa1d
commit 3130528
Showing
3 changed files
with
28 additions
and
0 deletions.
There are no files selected for viewing
26 changes: 26 additions & 0 deletions
26
packages/components/icons/src/icons/CategoriesClothesOutline.tsx
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,26 @@ | ||
import React, { type Ref } from 'react' | ||
|
||
import { IconProps } from '../Types' | ||
|
||
export const CategoriesClothesOutline = React.forwardRef( | ||
( | ||
{ title, fill = 'currentColor', stroke = 'none', ...props }: IconProps, | ||
ref: Ref<SVGSVGElement> | ||
) => ( | ||
<svg | ||
ref={ref} | ||
viewBox="0 0 24 24" | ||
xmlns="http://www.w3.org/2000/svg" | ||
{...{ ...(title && { 'data-title': title }), fill, stroke, ...props }} | ||
dangerouslySetInnerHTML={{ | ||
__html: | ||
(title === undefined ? '' : `<title>${title}</title>`) + | ||
'<path fill-rule="evenodd" clip-rule="evenodd" d="M6.17972 2C5.86387 2 5.56096 2.12745 5.33762 2.35431L0.348808 7.42175C0.12547 7.64861 0 7.9563 0 8.27713C0 8.59795 0.12547 8.90564 0.348808 9.1325L3.67468 12.5108C4.02997 12.8717 4.5539 12.9569 4.98881 12.7664V20.1012C4.98881 20.87 5.28948 21.6073 5.82468 22.151C6.35988 22.6946 7.08577 23 7.84266 23H16.1573C16.9142 23 17.6401 22.6946 18.1753 22.151C18.7105 21.6073 19.0112 20.87 19.0112 20.1012V12.7664C19.4461 12.9569 19.97 12.8717 20.3253 12.5108L23.6512 9.1325C23.8745 8.90564 24 8.59795 24 8.27713C24 7.9563 23.8745 7.64861 23.6512 7.42175L18.6624 2.35431C18.439 2.12745 18.1361 2 17.8203 2H6.17972ZM2.8751 8.27713L6.67301 4.41935H17.327L21.1249 8.27713L19.4832 9.94468L18.6624 9.1109C18.3218 8.76494 17.8096 8.66144 17.3645 8.84868C16.9195 9.03591 16.6294 9.47701 16.6294 9.96628V20.1012C16.6294 20.2283 16.5796 20.3503 16.4911 20.4402C16.4026 20.5301 16.2825 20.5806 16.1573 20.5806H7.84266C7.71747 20.5806 7.5974 20.5301 7.50888 20.4402C7.42036 20.3503 7.37062 20.2283 7.37062 20.1012V9.96628C7.37062 9.47701 7.08047 9.03591 6.63546 8.84868C6.19045 8.66144 5.67822 8.76494 5.33762 9.1109L4.51678 9.94468L2.8751 8.27713Z"/>', | ||
}} | ||
/> | ||
) | ||
) | ||
|
||
CategoriesClothesOutline.displayName = 'CategoriesClothesOutline' | ||
|
||
export const tags = ['CategoriesClothesOutline', ''] |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters