Skip to content

Commit

Permalink
feat(icons): add CategoriesClothesOutline
Browse files Browse the repository at this point in the history
  • Loading branch information
solygambas committed May 24, 2023
1 parent a38aa1d commit 3130528
Show file tree
Hide file tree
Showing 3 changed files with 28 additions and 0 deletions.
26 changes: 26 additions & 0 deletions packages/components/icons/src/icons/CategoriesClothesOutline.tsx
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', '']
1 change: 1 addition & 0 deletions packages/components/icons/src/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -73,6 +73,7 @@ export { CarWarrantyOutline } from './icons/CarWarrantyOutline'
export { Card } from './icons/Card'
export { CardFill } from './icons/CardFill'
export { CardOutline } from './icons/CardOutline'
export { CategoriesClothesOutline } from './icons/CategoriesClothesOutline'
export { Cave } from './icons/Cave'
export { ChargesIncluded } from './icons/ChargesIncluded'
export { Check } from './icons/Check'
Expand Down
1 change: 1 addition & 0 deletions packages/components/icons/src/tags.ts
Original file line number Diff line number Diff line change
Expand Up @@ -73,6 +73,7 @@ export { tags as carWarrantyOutlineTags } from './icons/CarWarrantyOutline'
export { tags as cardTags } from './icons/Card'
export { tags as cardFillTags } from './icons/CardFill'
export { tags as cardOutlineTags } from './icons/CardOutline'
export { tags as categoriesClothesOutlineTags } from './icons/CategoriesClothesOutline'
export { tags as caveTags } from './icons/Cave'
export { tags as chargesIncludedTags } from './icons/ChargesIncluded'
export { tags as checkTags } from './icons/Check'
Expand Down

0 comments on commit 3130528

Please sign in to comment.