Skip to content

Commit

Permalink
Merge pull request #1386 from adevinta/chore-updated-icons
Browse files Browse the repository at this point in the history
chore(icons): update icons
  • Loading branch information
solygambas authored Sep 5, 2023
2 parents b473f25 + 7a97f15 commit 012a36d
Show file tree
Hide file tree
Showing 8 changed files with 16 additions and 17 deletions.
3 changes: 1 addition & 2 deletions packages/components/icons/assets/PlayFill.svg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
2 changes: 1 addition & 1 deletion packages/components/icons/src/icons/PlayFill.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ export const PlayFill = React.forwardRef(
dangerouslySetInnerHTML={{
__html:
(title === undefined ? '' : `<title>${title}</title>`) +
'<path d="m12,22c5.52,0,10-4.48,10-10S17.52,2,12,2,2,6.48,2,12s4.48,10,10,10Z"/><path d="m9.69,8.15l6.15,3.85-6.15,3.85v-7.69Z"/>',
'<path d="m2,11.97c0,5.52,4.48,10,10,10s10-4.48,10-10c-.53-13.26-19.48-13.26-20,0Zm7.69,3.85v-7.69l6.15,3.85-6.15,3.85Z"/>',
}}
/>
)
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ import React, { type Ref } from 'react'

import { IconProps } from '../Types'

export const ShopingCartFill = React.forwardRef(
export const ShoppingCartFill = React.forwardRef(
(
{ title, fill = 'currentColor', stroke = 'none', ...props }: IconProps,
ref: Ref<SVGSVGElement>
Expand All @@ -11,7 +11,7 @@ export const ShopingCartFill = React.forwardRef(
ref={ref}
viewBox="0 0 24 24"
xmlns="http://www.w3.org/2000/svg"
data-title="ShopingCartFill"
data-title="ShoppingCartFill"
{...{ ...(title && { 'data-title': title }), fill, stroke, ...props }}
dangerouslySetInnerHTML={{
__html:
Expand All @@ -22,6 +22,6 @@ export const ShopingCartFill = React.forwardRef(
)
)

ShopingCartFill.displayName = 'ShopingCartFill'
ShoppingCartFill.displayName = 'ShoppingCartFill'

export const tags = ['ShopingCartFill', '']
export const tags = ['ShoppingCartFill', '']
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ import React, { type Ref } from 'react'

import { IconProps } from '../Types'

export const ShopingCartOutline = React.forwardRef(
export const ShoppingCartOutline = React.forwardRef(
(
{ title, fill = 'currentColor', stroke = 'none', ...props }: IconProps,
ref: Ref<SVGSVGElement>
Expand All @@ -11,7 +11,7 @@ export const ShopingCartOutline = React.forwardRef(
ref={ref}
viewBox="0 0 24 24"
xmlns="http://www.w3.org/2000/svg"
data-title="ShopingCartOutline"
data-title="ShoppingCartOutline"
{...{ ...(title && { 'data-title': title }), fill, stroke, ...props }}
dangerouslySetInnerHTML={{
__html:
Expand All @@ -22,6 +22,6 @@ export const ShopingCartOutline = React.forwardRef(
)
)

ShopingCartOutline.displayName = 'ShopingCartOutline'
ShoppingCartOutline.displayName = 'ShoppingCartOutline'

export const tags = ['ShopingCartOutline', '']
export const tags = ['ShoppingCartOutline', '']
4 changes: 2 additions & 2 deletions packages/components/icons/src/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -349,8 +349,8 @@ export { ShareOutline } from './icons/ShareOutline'
export { ShareiOs } from './icons/ShareiOs'
export { ShoeSize } from './icons/ShoeSize'
export { Shoes } from './icons/Shoes'
export { ShopingCartFill } from './icons/ShopingCartFill'
export { ShopingCartOutline } from './icons/ShopingCartOutline'
export { ShoppingCartFill } from './icons/ShoppingCartFill'
export { ShoppingCartOutline } from './icons/ShoppingCartOutline'
export { ShovelRake } from './icons/ShovelRake'
export { Shower } from './icons/Shower'
export { Size } from './icons/Size'
Expand Down
4 changes: 2 additions & 2 deletions packages/components/icons/src/tags.ts
Original file line number Diff line number Diff line change
Expand Up @@ -349,8 +349,8 @@ export { tags as shareOutlineTags } from './icons/ShareOutline'
export { tags as shareiOsTags } from './icons/ShareiOs'
export { tags as shoeSizeTags } from './icons/ShoeSize'
export { tags as shoesTags } from './icons/Shoes'
export { tags as shopingCartFillTags } from './icons/ShopingCartFill'
export { tags as shopingCartOutlineTags } from './icons/ShopingCartOutline'
export { tags as shoppingCartFillTags } from './icons/ShoppingCartFill'
export { tags as shoppingCartOutlineTags } from './icons/ShoppingCartOutline'
export { tags as shovelRakeTags } from './icons/ShovelRake'
export { tags as showerTags } from './icons/Shower'
export { tags as sizeTags } from './icons/Size'
Expand Down

0 comments on commit 012a36d

Please sign in to comment.