Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

feat: progressive discount icon #226

Merged
merged 2 commits into from
Sep 23, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
36 changes: 36 additions & 0 deletions styleguide/src/Icons/icons-path/ProgressiveDiscount.tsx
Original file line number Diff line number Diff line change
@@ -0,0 +1,36 @@
import React from 'react'

export const ProgressiveDiscount = () => (
<>
<path
fillRule="evenodd"
clipRule="evenodd"
d="M4.53255 2.09998C4.07255 2.09998 3.69922 2.47331 3.69922 2.93331C3.69922 3.39331 4.07255 3.76664 4.53255 3.76664C4.99255 3.76664 5.36589 3.39331 5.36589 2.93331C5.36589 2.47331 4.99255 2.09998 4.53255 2.09998Z"
/>
<path
fillRule="evenodd"
clipRule="evenodd"
d="M7.53255 5.09998C7.07255 5.09998 6.69922 5.47331 6.69922 5.93331C6.69922 6.39331 7.07255 6.76664 7.53255 6.76664C7.99255 6.76664 8.36589 6.39331 8.36589 5.93331C8.36589 5.47331 7.99255 5.09998 7.53255 5.09998Z"
/>
<path
fillRule="evenodd"
clipRule="evenodd"
d="M7.21605 2.09998H7.79005C7.89539 2.09998 7.95939 2.21664 7.90205 2.30598L5.13205 6.61398C5.07139 6.70864 4.96539 6.76664 4.85205 6.76664H4.27805C4.17272 6.76664 4.10872 6.64998 4.16605 6.56064L6.93605 2.25264C6.99672 2.15798 7.10272 2.09998 7.21605 2.09998Z"
/>
<path
fillRule="evenodd"
clipRule="evenodd"
d="M11.3 1.49995C11.3 1.16858 11.0314 0.899951 10.7 0.899951H1.3C0.968629 0.899951 0.7 1.16858 0.7 1.49995V7.29995C0.7 7.63132 0.968629 7.89995 1.3 7.89995H10.7C11.0314 7.89995 11.3 7.63132 11.3 7.29995V1.49995ZM1 0.199951C0.447715 0.199951 0 0.647667 0 1.19995V7.59995C0 8.15224 0.447715 8.59995 1 8.59995H11C11.5523 8.59995 12 8.15224 12 7.59995V1.19995C12 0.647666 11.5523 0.199951 11 0.199951H1Z"
/>
<path
fillRule="evenodd"
clipRule="evenodd"
d="M1.7083 9C1.7559 9.28377 2.0027 9.5 2.3 9.5H9.7C9.9973 9.5 10.2441 9.28377 10.2917 9H11V9.2C11 9.75228 10.5523 10.2 10 10.2H2C1.44772 10.2 1 9.75228 1 9.2V9H1.7083Z"
/>
<path
fillRule="evenodd"
clipRule="evenodd"
d="M2.7083 10.6C2.7559 10.8837 3.0027 11.1 3.3 11.1H8.7C8.9973 11.1 9.2441 10.8837 9.2917 10.6H10V10.8C10 11.3523 9.55229 11.8 9 11.8H3C2.44772 11.8 2 11.3523 2 10.8V10.6H2.7083Z"
/>
</>
)
2 changes: 2 additions & 0 deletions styleguide/src/Icons/icons-path/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -91,6 +91,7 @@ import { MinusCircle } from './MinusCircle'
import { MinusCircleSolid } from './MinusCircleSolid'
import { DotsThree } from './DotsThree'
import { Instagram } from './Instagram'
import { ProgressiveDiscount } from './ProgressiveDiscount'

export const icons = {
adjust: Adjust,
Expand Down Expand Up @@ -187,4 +188,5 @@ export const icons = {
minusCircleSolid: MinusCircleSolid,
dotsThree: DotsThree,
instagram: Instagram,
progressiveDiscount: ProgressiveDiscount,
}
Loading