@faststore/components 2.0.96-alpha.0 → 2.0.101-alpha.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/atoms/Button/Button.d.ts +1 -1
- package/dist/atoms/Button/Button.js +3 -3
- package/dist/atoms/Button/Button.js.map +1 -1
- package/dist/atoms/Icon/Icon.d.ts +15 -6
- package/dist/atoms/Icon/Icon.js +11 -3
- package/dist/atoms/Icon/Icon.js.map +1 -1
- package/dist/atoms/Select/Select.d.ts +1 -1
- package/dist/atoms/Select/Select.js +1 -2
- package/dist/atoms/Select/Select.js.map +1 -1
- package/dist/index.d.ts +0 -1
- package/dist/index.js +0 -2
- package/dist/index.js.map +1 -1
- package/dist/molecules/Accordion/AccordionButton.d.ts +1 -1
- package/dist/molecules/Accordion/AccordionButton.js +2 -2
- package/dist/molecules/Accordion/AccordionButton.js.map +1 -1
- package/dist/molecules/Alert/Alert.d.ts +1 -1
- package/dist/molecules/Alert/Alert.js +4 -6
- package/dist/molecules/Alert/Alert.js.map +1 -1
- package/dist/molecules/Breadcrumb/BreadcrumbBase.js +7 -5
- package/dist/molecules/Breadcrumb/BreadcrumbBase.js.map +1 -1
- package/dist/molecules/Breadcrumb/HomeLink.js +3 -3
- package/dist/molecules/Breadcrumb/HomeLink.js.map +1 -1
- package/dist/molecules/BuyButton/BuyButton.js +2 -3
- package/dist/molecules/BuyButton/BuyButton.js.map +1 -1
- package/dist/molecules/CartItem/CartItem.js +2 -3
- package/dist/molecules/CartItem/CartItem.js.map +1 -1
- package/dist/molecules/Dropdown/DropdownItem.d.ts +2 -3
- package/dist/molecules/Dropdown/DropdownItem.js +2 -3
- package/dist/molecules/Dropdown/DropdownItem.js.map +1 -1
- package/dist/molecules/Gift/Gift.js +3 -2
- package/dist/molecules/Gift/Gift.js.map +1 -1
- package/dist/molecules/InputField/InputField.js +2 -3
- package/dist/molecules/InputField/InputField.js.map +1 -1
- package/dist/molecules/LinkButton/LinkButton.js +2 -3
- package/dist/molecules/LinkButton/LinkButton.js.map +1 -1
- package/dist/molecules/Modal/ModalHeader.js +2 -2
- package/dist/molecules/Modal/ModalHeader.js.map +1 -1
- package/dist/molecules/ProductCard/ProductCardContent.d.ts +1 -1
- package/dist/molecules/ProductCard/ProductCardContent.js +3 -4
- package/dist/molecules/ProductCard/ProductCardContent.js.map +1 -1
- package/dist/molecules/ProductTitle/ProductTitle.d.ts +1 -1
- package/dist/molecules/QuantitySelector/QuantitySelector.js +4 -5
- package/dist/molecules/QuantitySelector/QuantitySelector.js.map +1 -1
- package/dist/molecules/Rating/Rating.d.ts +2 -4
- package/dist/molecules/Rating/Rating.js +5 -5
- package/dist/molecules/Rating/Rating.js.map +1 -1
- package/dist/molecules/RegionBar/RegionBar.d.ts +1 -1
- package/dist/molecules/RegionBar/RegionBar.js +2 -3
- package/dist/molecules/RegionBar/RegionBar.js.map +1 -1
- package/dist/molecules/SearchAutoComplete/SearchAutoCompleteTerm.d.ts +1 -1
- package/dist/molecules/SearchAutoComplete/SearchAutoCompleteTerm.js +4 -3
- package/dist/molecules/SearchAutoComplete/SearchAutoCompleteTerm.js.map +1 -1
- package/dist/molecules/SearchHistory/SearchHistoryTerm.d.ts +1 -1
- package/dist/molecules/SearchHistory/SearchHistoryTerm.js +4 -3
- package/dist/molecules/SearchHistory/SearchHistoryTerm.js.map +1 -1
- package/dist/molecules/SearchInputField/SearchInputField.d.ts +1 -1
- package/dist/molecules/SearchInputField/SearchInputField.js +2 -2
- package/dist/molecules/SearchInputField/SearchInputField.js.map +1 -1
- package/dist/molecules/Table/Table.d.ts +1 -1
- package/dist/molecules/Tag/Tag.d.ts +1 -1
- package/dist/molecules/Tag/Tag.js +2 -5
- package/dist/molecules/Tag/Tag.js.map +1 -1
- package/dist/molecules/Toast/Toast.js +1 -3
- package/dist/molecules/Toast/Toast.js.map +1 -1
- package/dist/molecules/Toggle/Toggle.d.ts +1 -1
- package/dist/molecules/Toggle/Toggle.js +2 -3
- package/dist/molecules/Toggle/Toggle.js.map +1 -1
- package/dist/organisms/Hero/HeroHeader.d.ts +1 -1
- package/dist/organisms/Hero/HeroHeader.js +4 -3
- package/dist/organisms/Hero/HeroHeader.js.map +1 -1
- package/dist/organisms/OutOfStock/OutOfStock.d.ts +1 -1
- package/dist/organisms/OutOfStock/OutOfStock.js +2 -3
- package/dist/organisms/OutOfStock/OutOfStock.js.map +1 -1
- package/dist/organisms/ShippingSimulation/ShippingSimulation.d.ts +1 -1
- package/dist/organisms/ShippingSimulation/ShippingSimulation.js +2 -3
- package/dist/organisms/ShippingSimulation/ShippingSimulation.js.map +1 -1
- package/dist/organisms/SlideOver/SlideOverHeader.d.ts +2 -2
- package/dist/organisms/SlideOver/SlideOverHeader.js +2 -3
- package/dist/organisms/SlideOver/SlideOverHeader.js.map +1 -1
- package/package.json +2 -2
- package/src/atoms/Button/Button.tsx +4 -4
- package/src/atoms/Icon/Icon.tsx +36 -10
- package/src/atoms/Select/Select.tsx +2 -3
- package/src/index.ts +0 -3
- package/src/molecules/Accordion/AccordionButton.tsx +4 -4
- package/src/molecules/Alert/Alert.tsx +5 -8
- package/src/molecules/Breadcrumb/BreadcrumbBase.tsx +43 -27
- package/src/molecules/Breadcrumb/HomeLink.tsx +3 -3
- package/src/molecules/BuyButton/BuyButton.tsx +2 -3
- package/src/molecules/CartItem/CartItem.tsx +2 -3
- package/src/molecules/Dropdown/DropdownItem.tsx +4 -5
- package/src/molecules/Gift/Gift.tsx +3 -2
- package/src/molecules/InputField/InputField.tsx +3 -4
- package/src/molecules/LinkButton/LinkButton.tsx +3 -4
- package/src/molecules/Modal/ModalHeader.tsx +2 -2
- package/src/molecules/ProductCard/ProductCardContent.tsx +3 -10
- package/src/molecules/QuantitySelector/QuantitySelector.tsx +4 -5
- package/src/molecules/Rating/Rating.tsx +12 -10
- package/src/molecules/RegionBar/RegionBar.tsx +3 -4
- package/src/molecules/SearchAutoComplete/SearchAutoCompleteTerm.tsx +10 -9
- package/src/molecules/SearchHistory/SearchHistoryTerm.tsx +9 -6
- package/src/molecules/SearchInputField/SearchInputField.tsx +5 -4
- package/src/molecules/Tag/Tag.tsx +3 -5
- package/src/molecules/Toast/Toast.tsx +1 -2
- package/src/molecules/Toggle/Toggle.tsx +3 -4
- package/src/organisms/Hero/HeroHeader.tsx +11 -5
- package/src/organisms/OutOfStock/OutOfStock.tsx +3 -4
- package/src/organisms/ShippingSimulation/ShippingSimulation.tsx +3 -11
- package/src/organisms/SlideOver/SlideOverHeader.tsx +3 -5
- package/dist/assets/ArrowElbowDownRight.d.ts +0 -4
- package/dist/assets/ArrowElbowDownRight.js +0 -8
- package/dist/assets/ArrowElbowDownRight.js.map +0 -1
- package/dist/assets/ArrowRight.d.ts +0 -3
- package/dist/assets/ArrowRight.js +0 -8
- package/dist/assets/ArrowRight.js.map +0 -1
- package/dist/assets/ArrowSquareOut.d.ts +0 -4
- package/dist/assets/ArrowSquareOut.js +0 -6
- package/dist/assets/ArrowSquareOut.js.map +0 -1
- package/dist/assets/BellRinging.d.ts +0 -4
- package/dist/assets/BellRinging.js +0 -6
- package/dist/assets/BellRinging.js.map +0 -1
- package/dist/assets/CaretDown.d.ts +0 -3
- package/dist/assets/CaretDown.js +0 -7
- package/dist/assets/CaretDown.js.map +0 -1
- package/dist/assets/CaretRight.d.ts +0 -4
- package/dist/assets/CaretRight.js +0 -7
- package/dist/assets/CaretRight.js.map +0 -1
- package/dist/assets/Checked.d.ts +0 -3
- package/dist/assets/Checked.js +0 -6
- package/dist/assets/Checked.js.map +0 -1
- package/dist/assets/ClockClockwise.d.ts +0 -3
- package/dist/assets/ClockClockwise.js +0 -10
- package/dist/assets/ClockClockwise.js.map +0 -1
- package/dist/assets/DotsThree.d.ts +0 -4
- package/dist/assets/DotsThree.js +0 -9
- package/dist/assets/DotsThree.js.map +0 -1
- package/dist/assets/FadersHorizontal.d.ts +0 -3
- package/dist/assets/FadersHorizontal.js +0 -12
- package/dist/assets/FadersHorizontal.js.map +0 -1
- package/dist/assets/Heart.d.ts +0 -3
- package/dist/assets/Heart.js +0 -7
- package/dist/assets/Heart.js.map +0 -1
- package/dist/assets/House.d.ts +0 -4
- package/dist/assets/House.js +0 -7
- package/dist/assets/House.js.map +0 -1
- package/dist/assets/IconProps.d.ts +0 -3
- package/dist/assets/IconProps.js +0 -2
- package/dist/assets/IconProps.js.map +0 -1
- package/dist/assets/MagnifyingGlass.d.ts +0 -4
- package/dist/assets/MagnifyingGlass.js +0 -7
- package/dist/assets/MagnifyingGlass.js.map +0 -1
- package/dist/assets/MapPin.d.ts +0 -4
- package/dist/assets/MapPin.js +0 -8
- package/dist/assets/MapPin.js.map +0 -1
- package/dist/assets/Minus.d.ts +0 -3
- package/dist/assets/Minus.js +0 -7
- package/dist/assets/Minus.js.map +0 -1
- package/dist/assets/MinusCircle.d.ts +0 -3
- package/dist/assets/MinusCircle.js +0 -8
- package/dist/assets/MinusCircle.js.map +0 -1
- package/dist/assets/PaymentFlags/ApplePay.d.ts +0 -3
- package/dist/assets/PaymentFlags/ApplePay.js +0 -7
- package/dist/assets/PaymentFlags/ApplePay.js.map +0 -1
- package/dist/assets/PaymentFlags/Diners.d.ts +0 -3
- package/dist/assets/PaymentFlags/Diners.js +0 -8
- package/dist/assets/PaymentFlags/Diners.js.map +0 -1
- package/dist/assets/PaymentFlags/EloCard.d.ts +0 -3
- package/dist/assets/PaymentFlags/EloCard.js +0 -11
- package/dist/assets/PaymentFlags/EloCard.js.map +0 -1
- package/dist/assets/PaymentFlags/GooglePay.d.ts +0 -3
- package/dist/assets/PaymentFlags/GooglePay.js +0 -11
- package/dist/assets/PaymentFlags/GooglePay.js.map +0 -1
- package/dist/assets/PaymentFlags/Mastercard.d.ts +0 -3
- package/dist/assets/PaymentFlags/Mastercard.js +0 -9
- package/dist/assets/PaymentFlags/Mastercard.js.map +0 -1
- package/dist/assets/PaymentFlags/PayPal.d.ts +0 -3
- package/dist/assets/PaymentFlags/PayPal.js +0 -10
- package/dist/assets/PaymentFlags/PayPal.js.map +0 -1
- package/dist/assets/PaymentFlags/Stripe.d.ts +0 -3
- package/dist/assets/PaymentFlags/Stripe.js +0 -7
- package/dist/assets/PaymentFlags/Stripe.js.map +0 -1
- package/dist/assets/PaymentFlags/Visa.d.ts +0 -3
- package/dist/assets/PaymentFlags/Visa.js +0 -7
- package/dist/assets/PaymentFlags/Visa.js.map +0 -1
- package/dist/assets/PaymentFlags/index.d.ts +0 -8
- package/dist/assets/PaymentFlags/index.js +0 -9
- package/dist/assets/PaymentFlags/index.js.map +0 -1
- package/dist/assets/Plus.d.ts +0 -3
- package/dist/assets/Plus.js +0 -8
- package/dist/assets/Plus.js.map +0 -1
- package/dist/assets/PlusCircle.d.ts +0 -3
- package/dist/assets/PlusCircle.js +0 -9
- package/dist/assets/PlusCircle.js.map +0 -1
- package/dist/assets/Ruler.d.ts +0 -3
- package/dist/assets/Ruler.js +0 -10
- package/dist/assets/Ruler.js.map +0 -1
- package/dist/assets/SealCheck.d.ts +0 -4
- package/dist/assets/SealCheck.js +0 -6
- package/dist/assets/SealCheck.js.map +0 -1
- package/dist/assets/SealWarning.d.ts +0 -4
- package/dist/assets/SealWarning.js +0 -6
- package/dist/assets/SealWarning.js.map +0 -1
- package/dist/assets/ShoppingCart.d.ts +0 -3
- package/dist/assets/ShoppingCart.js +0 -10
- package/dist/assets/ShoppingCart.js.map +0 -1
- package/dist/assets/Star.d.ts +0 -3
- package/dist/assets/Star.js +0 -7
- package/dist/assets/Star.js.map +0 -1
- package/dist/assets/TagIcon.d.ts +0 -3
- package/dist/assets/TagIcon.js +0 -8
- package/dist/assets/TagIcon.js.map +0 -1
- package/dist/assets/X.d.ts +0 -3
- package/dist/assets/X.js +0 -8
- package/dist/assets/X.js.map +0 -1
- package/dist/assets/XCircle.d.ts +0 -3
- package/dist/assets/XCircle.js +0 -9
- package/dist/assets/XCircle.js.map +0 -1
- package/dist/assets/index.d.ts +0 -27
- package/dist/assets/index.js +0 -29
- package/dist/assets/index.js.map +0 -1
- package/src/assets/ArrowElbowDownRight.tsx +0 -28
- package/src/assets/ArrowRight.tsx +0 -37
- package/src/assets/ArrowSquareOut.tsx +0 -19
- package/src/assets/BellRinging.tsx +0 -18
- package/src/assets/CaretDown.tsx +0 -26
- package/src/assets/CaretRight.tsx +0 -25
- package/src/assets/Checked.tsx +0 -24
- package/src/assets/ClockClockwise.tsx +0 -56
- package/src/assets/DotsThree.tsx +0 -21
- package/src/assets/FadersHorizontal.tsx +0 -84
- package/src/assets/Heart.tsx +0 -19
- package/src/assets/House.tsx +0 -26
- package/src/assets/IconProps.ts +0 -3
- package/src/assets/MagnifyingGlass.tsx +0 -22
- package/src/assets/MapPin.tsx +0 -34
- package/src/assets/Minus.tsx +0 -28
- package/src/assets/MinusCircle.tsx +0 -36
- package/src/assets/PaymentFlags/ApplePay.tsx +0 -20
- package/src/assets/PaymentFlags/Diners.tsx +0 -20
- package/src/assets/PaymentFlags/EloCard.tsx +0 -32
- package/src/assets/PaymentFlags/GooglePay.tsx +0 -41
- package/src/assets/PaymentFlags/Mastercard.tsx +0 -32
- package/src/assets/PaymentFlags/PayPal.tsx +0 -38
- package/src/assets/PaymentFlags/Stripe.tsx +0 -25
- package/src/assets/PaymentFlags/Visa.tsx +0 -20
- package/src/assets/PaymentFlags/index.ts +0 -8
- package/src/assets/Plus.tsx +0 -38
- package/src/assets/PlusCircle.tsx +0 -46
- package/src/assets/Ruler.tsx +0 -64
- package/src/assets/SealCheck.tsx +0 -17
- package/src/assets/SealWarning.tsx +0 -17
- package/src/assets/ShoppingCart.tsx +0 -50
- package/src/assets/Star.tsx +0 -19
- package/src/assets/TagIcon.tsx +0 -26
- package/src/assets/X.tsx +0 -38
- package/src/assets/XCircle.tsx +0 -46
- package/src/assets/index.ts +0 -29
package/src/assets/Plus.tsx
DELETED
|
@@ -1,38 +0,0 @@
|
|
|
1
|
-
import React from 'react'
|
|
2
|
-
import type { FC } from 'react'
|
|
3
|
-
|
|
4
|
-
// Icon from Phosphor Icons
|
|
5
|
-
const Plus: FC = () => (
|
|
6
|
-
<svg
|
|
7
|
-
xmlns="http://www.w3.org/2000/svg"
|
|
8
|
-
fill="currentColor"
|
|
9
|
-
viewBox="0 0 256 256"
|
|
10
|
-
strokeWidth="24"
|
|
11
|
-
width={16}
|
|
12
|
-
height={16}
|
|
13
|
-
>
|
|
14
|
-
<rect width="256" height="256" fill="none"></rect>
|
|
15
|
-
<line
|
|
16
|
-
x1="40"
|
|
17
|
-
y1="128"
|
|
18
|
-
x2="216"
|
|
19
|
-
y2="128"
|
|
20
|
-
fill="none"
|
|
21
|
-
stroke="currentColor"
|
|
22
|
-
strokeLinecap="round"
|
|
23
|
-
strokeLinejoin="round"
|
|
24
|
-
></line>
|
|
25
|
-
<line
|
|
26
|
-
x1="128"
|
|
27
|
-
y1="40"
|
|
28
|
-
x2="128"
|
|
29
|
-
y2="216"
|
|
30
|
-
fill="none"
|
|
31
|
-
stroke="currentColor"
|
|
32
|
-
strokeLinecap="round"
|
|
33
|
-
strokeLinejoin="round"
|
|
34
|
-
></line>
|
|
35
|
-
</svg>
|
|
36
|
-
)
|
|
37
|
-
|
|
38
|
-
export default Plus
|
|
@@ -1,46 +0,0 @@
|
|
|
1
|
-
import React from 'react'
|
|
2
|
-
import type { FC } from 'react'
|
|
3
|
-
|
|
4
|
-
// Icon from Phosphor Icons
|
|
5
|
-
const PlusCircle: FC = () => (
|
|
6
|
-
<svg
|
|
7
|
-
xmlns="http://www.w3.org/2000/svg"
|
|
8
|
-
fill="currentColor"
|
|
9
|
-
viewBox="0 0 256 256"
|
|
10
|
-
strokeWidth="16"
|
|
11
|
-
width={24}
|
|
12
|
-
height={24}
|
|
13
|
-
>
|
|
14
|
-
<rect width="256" height="256" fill="none"></rect>
|
|
15
|
-
<circle
|
|
16
|
-
cx="128"
|
|
17
|
-
cy="128"
|
|
18
|
-
r="96"
|
|
19
|
-
fill="none"
|
|
20
|
-
stroke="currentColor"
|
|
21
|
-
strokeMiterlimit="10"
|
|
22
|
-
></circle>
|
|
23
|
-
<line
|
|
24
|
-
x1="88"
|
|
25
|
-
y1="128"
|
|
26
|
-
x2="168"
|
|
27
|
-
y2="128"
|
|
28
|
-
fill="none"
|
|
29
|
-
stroke="currentColor"
|
|
30
|
-
strokeLinecap="round"
|
|
31
|
-
strokeLinejoin="round"
|
|
32
|
-
></line>
|
|
33
|
-
<line
|
|
34
|
-
x1="128"
|
|
35
|
-
y1="88"
|
|
36
|
-
x2="128"
|
|
37
|
-
y2="168"
|
|
38
|
-
fill="none"
|
|
39
|
-
stroke="currentColor"
|
|
40
|
-
strokeLinecap="round"
|
|
41
|
-
strokeLinejoin="round"
|
|
42
|
-
></line>
|
|
43
|
-
</svg>
|
|
44
|
-
)
|
|
45
|
-
|
|
46
|
-
export default PlusCircle
|
package/src/assets/Ruler.tsx
DELETED
|
@@ -1,64 +0,0 @@
|
|
|
1
|
-
import React from 'react'
|
|
2
|
-
import type { FC } from 'react'
|
|
3
|
-
|
|
4
|
-
// Icon from Phosphor Icons
|
|
5
|
-
const Ruler: FC = () => (
|
|
6
|
-
<svg
|
|
7
|
-
xmlns="http://www.w3.org/2000/svg"
|
|
8
|
-
fill="currentColor"
|
|
9
|
-
viewBox="0 0 256 256"
|
|
10
|
-
strokeWidth="16"
|
|
11
|
-
width={24}
|
|
12
|
-
height={24}
|
|
13
|
-
>
|
|
14
|
-
<rect width="256" height="256" fill="none"></rect>
|
|
15
|
-
<rect
|
|
16
|
-
x="26.2"
|
|
17
|
-
y="82.7"
|
|
18
|
-
width="203.6"
|
|
19
|
-
height="90.51"
|
|
20
|
-
rx="8"
|
|
21
|
-
transform="translate(-53 128) rotate(-45)"
|
|
22
|
-
fill="none"
|
|
23
|
-
stroke="currentColor"
|
|
24
|
-
strokeLinecap="round"
|
|
25
|
-
strokeLinejoin="round"
|
|
26
|
-
strokeWidth="24"
|
|
27
|
-
></rect>
|
|
28
|
-
<line
|
|
29
|
-
x1="132"
|
|
30
|
-
y1="60"
|
|
31
|
-
x2="164"
|
|
32
|
-
y2="92"
|
|
33
|
-
fill="none"
|
|
34
|
-
stroke="currentColor"
|
|
35
|
-
strokeLinecap="round"
|
|
36
|
-
strokeLinejoin="round"
|
|
37
|
-
strokeWidth="24"
|
|
38
|
-
></line>
|
|
39
|
-
<line
|
|
40
|
-
x1="96"
|
|
41
|
-
y1="96"
|
|
42
|
-
x2="128"
|
|
43
|
-
y2="128"
|
|
44
|
-
fill="none"
|
|
45
|
-
stroke="currentColor"
|
|
46
|
-
strokeLinecap="round"
|
|
47
|
-
strokeLinejoin="round"
|
|
48
|
-
strokeWidth="24"
|
|
49
|
-
></line>
|
|
50
|
-
<line
|
|
51
|
-
x1="60"
|
|
52
|
-
y1="132"
|
|
53
|
-
x2="92"
|
|
54
|
-
y2="164"
|
|
55
|
-
fill="none"
|
|
56
|
-
stroke="currentColor"
|
|
57
|
-
strokeLinecap="round"
|
|
58
|
-
strokeLinejoin="round"
|
|
59
|
-
strokeWidth="24"
|
|
60
|
-
></line>
|
|
61
|
-
</svg>
|
|
62
|
-
)
|
|
63
|
-
|
|
64
|
-
export default Ruler
|
package/src/assets/SealCheck.tsx
DELETED
|
@@ -1,17 +0,0 @@
|
|
|
1
|
-
import React from 'react'
|
|
2
|
-
import { IconProps } from './IconProps'
|
|
3
|
-
|
|
4
|
-
// Icon from Phosphor Icons
|
|
5
|
-
const SealCheck = ({ size = 24 }: IconProps) => (
|
|
6
|
-
<svg
|
|
7
|
-
xmlns="http://www.w3.org/2000/svg"
|
|
8
|
-
width={size}
|
|
9
|
-
height={size}
|
|
10
|
-
fill="currentColor"
|
|
11
|
-
viewBox="0 0 256 256"
|
|
12
|
-
>
|
|
13
|
-
<path d="M225.86,102.82c-3.77-3.94-7.67-8-9.14-11.57-1.36-3.27-1.44-8.69-1.52-13.94-.15-9.76-.31-20.82-8-28.51s-18.75-7.85-28.51-8c-5.25-.08-10.67-.16-13.94-1.52-3.56-1.47-7.63-5.37-11.57-9.14C146.28,23.51,138.44,16,128,16s-18.27,7.51-25.18,14.14c-3.94,3.77-8,7.67-11.57,9.14C88,40.64,82.56,40.72,77.31,40.8c-9.76.15-20.82.31-28.51,8S41,67.55,40.8,77.31c-.08,5.25-.16,10.67-1.52,13.94-1.47,3.56-5.37,7.63-9.14,11.57C23.51,109.72,16,117.56,16,128s7.51,18.27,14.14,25.18c3.77,3.94,7.67,8,9.14,11.57,1.36,3.27,1.44,8.69,1.52,13.94.15,9.76.31,20.82,8,28.51s18.75,7.85,28.51,8c5.25.08,10.67.16,13.94,1.52,3.56,1.47,7.63,5.37,11.57,9.14C109.72,232.49,117.56,240,128,240s18.27-7.51,25.18-14.14c3.94-3.77,8-7.67,11.57-9.14,3.27-1.36,8.69-1.44,13.94-1.52,9.76-.15,20.82-.31,28.51-8s7.85-18.75,8-28.51c.08-5.25.16-10.67,1.52-13.94,1.47-3.56,5.37-7.63,9.14-11.57C232.49,146.28,240,138.44,240,128S232.49,109.73,225.86,102.82Zm-11.55,39.29c-4.79,5-9.75,10.17-12.38,16.52-2.52,6.1-2.63,13.07-2.73,19.82-.1,7-.21,14.33-3.32,17.43s-10.39,3.22-17.43,3.32c-6.75.1-13.72.21-19.82,2.73-6.35,2.63-11.52,7.59-16.52,12.38S132,224,128,224s-9.15-4.92-14.11-9.69-10.17-9.75-16.52-12.38c-6.1-2.52-13.07-2.63-19.82-2.73-7-.1-14.33-.21-17.43-3.32s-3.22-10.39-3.32-17.43c-.1-6.75-.21-13.72-2.73-19.82-2.63-6.35-7.59-11.52-12.38-16.52S32,132,32,128s4.92-9.15,9.69-14.11,9.75-10.17,12.38-16.52c2.52-6.1,2.63-13.07,2.73-19.82.1-7,.21-14.33,3.32-17.43S70.51,56.9,77.55,56.8c6.75-.1,13.72-.21,19.82-2.73,6.35-2.63,11.52-7.59,16.52-12.38S124,32,128,32s9.15,4.92,14.11,9.69,10.17,9.75,16.52,12.38c6.1,2.52,13.07,2.63,19.82,2.73,7,.1,14.33.21,17.43,3.32s3.22,10.39,3.32,17.43c.1,6.75.21,13.72,2.73,19.82,2.63,6.35,7.59,11.52,12.38,16.52S224,124,224,128,219.08,137.15,214.31,142.11ZM173.66,98.34a8,8,0,0,1,0,11.32l-56,56a8,8,0,0,1-11.32,0l-24-24a8,8,0,0,1,11.32-11.32L112,148.69l50.34-50.35A8,8,0,0,1,173.66,98.34Z"></path>
|
|
14
|
-
</svg>
|
|
15
|
-
)
|
|
16
|
-
|
|
17
|
-
export default SealCheck
|
|
@@ -1,17 +0,0 @@
|
|
|
1
|
-
import React from 'react'
|
|
2
|
-
import { IconProps } from './IconProps'
|
|
3
|
-
|
|
4
|
-
// Icon from Phosphor Icons
|
|
5
|
-
const SealWarning = ({ size = 24 }: IconProps) => (
|
|
6
|
-
<svg
|
|
7
|
-
xmlns="http://www.w3.org/2000/svg"
|
|
8
|
-
width={size}
|
|
9
|
-
height={size}
|
|
10
|
-
fill="currentColor"
|
|
11
|
-
viewBox="0 0 256 256"
|
|
12
|
-
>
|
|
13
|
-
<path d="M225.86,102.82c-3.77-3.94-7.67-8-9.14-11.57-1.36-3.27-1.44-8.69-1.52-13.94-.15-9.76-.31-20.82-8-28.51s-18.75-7.85-28.51-8c-5.25-.08-10.67-.16-13.94-1.52-3.56-1.47-7.63-5.37-11.57-9.14C146.28,23.51,138.44,16,128,16s-18.27,7.51-25.18,14.14c-3.94,3.77-8,7.67-11.57,9.14C88,40.64,82.56,40.72,77.31,40.8c-9.76.15-20.82.31-28.51,8S41,67.55,40.8,77.31c-.08,5.25-.16,10.67-1.52,13.94-1.47,3.56-5.37,7.63-9.14,11.57C23.51,109.72,16,117.56,16,128s7.51,18.27,14.14,25.18c3.77,3.94,7.67,8,9.14,11.57,1.36,3.27,1.44,8.69,1.52,13.94.15,9.76.31,20.82,8,28.51s18.75,7.85,28.51,8c5.25.08,10.67.16,13.94,1.52,3.56,1.47,7.63,5.37,11.57,9.14C109.72,232.49,117.56,240,128,240s18.27-7.51,25.18-14.14c3.94-3.77,8-7.67,11.57-9.14,3.27-1.36,8.69-1.44,13.94-1.52,9.76-.15,20.82-.31,28.51-8s7.85-18.75,8-28.51c.08-5.25.16-10.67,1.52-13.94,1.47-3.56,5.37-7.63,9.14-11.57C232.49,146.28,240,138.44,240,128S232.49,109.73,225.86,102.82Zm-11.55,39.29c-4.79,5-9.75,10.17-12.38,16.52-2.52,6.1-2.63,13.07-2.73,19.82-.1,7-.21,14.33-3.32,17.43s-10.39,3.22-17.43,3.32c-6.75.1-13.72.21-19.82,2.73-6.35,2.63-11.52,7.59-16.52,12.38S132,224,128,224s-9.15-4.92-14.11-9.69-10.17-9.75-16.52-12.38c-6.1-2.52-13.07-2.63-19.82-2.73-7-.1-14.33-.21-17.43-3.32s-3.22-10.39-3.32-17.43c-.1-6.75-.21-13.72-2.73-19.82-2.63-6.35-7.59-11.52-12.38-16.52S32,132,32,128s4.92-9.15,9.69-14.11,9.75-10.17,12.38-16.52c2.52-6.1,2.63-13.07,2.73-19.82.1-7,.21-14.33,3.32-17.43S70.51,56.9,77.55,56.8c6.75-.1,13.72-.21,19.82-2.73,6.35-2.63,11.52-7.59,16.52-12.38S124,32,128,32s9.15,4.92,14.11,9.69,10.17,9.75,16.52,12.38c6.1,2.52,13.07,2.63,19.82,2.73,7,.1,14.33.21,17.43,3.32s3.22,10.39,3.32,17.43c.1,6.75.21,13.72,2.73,19.82,2.63,6.35,7.59,11.52,12.38,16.52S224,124,224,128,219.08,137.15,214.31,142.11ZM120,136V80a8,8,0,0,1,16,0v56a8,8,0,0,1-16,0Zm20,36a12,12,0,1,1-12-12A12,12,0,0,1,140,172Z"></path>
|
|
14
|
-
</svg>
|
|
15
|
-
)
|
|
16
|
-
|
|
17
|
-
export default SealWarning
|
|
@@ -1,50 +0,0 @@
|
|
|
1
|
-
import React from 'react'
|
|
2
|
-
import type { FC } from 'react'
|
|
3
|
-
|
|
4
|
-
// Icon from Phosphor Icons
|
|
5
|
-
const ShoppingCart: FC = () => (
|
|
6
|
-
<svg
|
|
7
|
-
xmlns="http://www.w3.org/2000/svg"
|
|
8
|
-
fill="currentColor"
|
|
9
|
-
viewBox="0 0 256 256"
|
|
10
|
-
strokeWidth="16"
|
|
11
|
-
width={24}
|
|
12
|
-
height={24}
|
|
13
|
-
>
|
|
14
|
-
<rect width="256" height="256" fill="none"></rect>
|
|
15
|
-
<path
|
|
16
|
-
d="M184,184H69.81818L41.92162,30.56892A8,8,0,0,0,34.05066,24H16"
|
|
17
|
-
fill="none"
|
|
18
|
-
stroke="currentColor"
|
|
19
|
-
strokeLinecap="round"
|
|
20
|
-
strokeLinejoin="round"
|
|
21
|
-
></path>
|
|
22
|
-
<circle
|
|
23
|
-
cx="80"
|
|
24
|
-
cy="204"
|
|
25
|
-
r="20"
|
|
26
|
-
fill="none"
|
|
27
|
-
stroke="currentColor"
|
|
28
|
-
strokeLinecap="round"
|
|
29
|
-
strokeLinejoin="round"
|
|
30
|
-
></circle>
|
|
31
|
-
<circle
|
|
32
|
-
cx="184"
|
|
33
|
-
cy="204"
|
|
34
|
-
r="20"
|
|
35
|
-
fill="none"
|
|
36
|
-
stroke="currentColor"
|
|
37
|
-
strokeLinecap="round"
|
|
38
|
-
strokeLinejoin="round"
|
|
39
|
-
></circle>
|
|
40
|
-
<path
|
|
41
|
-
d="M62.54543,144H188.10132a16,16,0,0,0,15.74192-13.13783L216,64H48"
|
|
42
|
-
fill="none"
|
|
43
|
-
stroke="currentColor"
|
|
44
|
-
strokeLinecap="round"
|
|
45
|
-
strokeLinejoin="round"
|
|
46
|
-
></path>
|
|
47
|
-
</svg>
|
|
48
|
-
)
|
|
49
|
-
|
|
50
|
-
export default ShoppingCart
|
package/src/assets/Star.tsx
DELETED
|
@@ -1,19 +0,0 @@
|
|
|
1
|
-
import React from 'react'
|
|
2
|
-
import type { FC } from 'react'
|
|
3
|
-
|
|
4
|
-
// Icon from Phosphor Icons
|
|
5
|
-
const Star: FC = () => (
|
|
6
|
-
<svg
|
|
7
|
-
xmlns="http://www.w3.org/2000/svg"
|
|
8
|
-
fill="currentColor"
|
|
9
|
-
viewBox="0 0 256 256"
|
|
10
|
-
strokeWidth="16"
|
|
11
|
-
width={24}
|
|
12
|
-
height={24}
|
|
13
|
-
>
|
|
14
|
-
<rect width="256" height="256" fill="none"></rect>
|
|
15
|
-
<path d="M239.2,97.4A16.4,16.4,0,0,0,224.6,86l-59.4-4.1-22-55.5A16.4,16.4,0,0,0,128,16h0a16.4,16.4,0,0,0-15.2,10.4L90.4,82.2,31.4,86A16.5,16.5,0,0,0,16.8,97.4,16.8,16.8,0,0,0,22,115.5l45.4,38.4L53.9,207a18.5,18.5,0,0,0,7,19.6,18,18,0,0,0,20.1.6l46.9-29.7h.2l50.5,31.9a16.1,16.1,0,0,0,8.7,2.6,16.5,16.5,0,0,0,15.8-20.8l-14.3-58.1L234,115.5A16.8,16.8,0,0,0,239.2,97.4Z" stroke="currentColor" strokeLinecap="round" strokeLinejoin="round"></path>
|
|
16
|
-
</svg>
|
|
17
|
-
)
|
|
18
|
-
|
|
19
|
-
export default Star
|
package/src/assets/TagIcon.tsx
DELETED
|
@@ -1,26 +0,0 @@
|
|
|
1
|
-
import type { FC } from 'react'
|
|
2
|
-
import React from 'react'
|
|
3
|
-
|
|
4
|
-
// Icon from Phosphor Icons
|
|
5
|
-
const TagIcon: FC = () => (
|
|
6
|
-
<svg
|
|
7
|
-
xmlns="http://www.w3.org/2000/svg"
|
|
8
|
-
fill="currentColor"
|
|
9
|
-
viewBox="0 0 256 256"
|
|
10
|
-
width={24}
|
|
11
|
-
height={24}
|
|
12
|
-
>
|
|
13
|
-
<rect width="256" height="256" fill="none"></rect>
|
|
14
|
-
<path
|
|
15
|
-
d="M122.7,25.9,42,42,25.9,122.7a8,8,0,0,0,2.2,7.2L132.5,234.3a7.9,7.9,0,0,0,11.3,0l90.5-90.5a7.9,7.9,0,0,0,0-11.3L129.9,28.1A8,8,0,0,0,122.7,25.9Z"
|
|
16
|
-
fill="none"
|
|
17
|
-
stroke="currentColor"
|
|
18
|
-
strokeLinecap="round"
|
|
19
|
-
strokeLinejoin="round"
|
|
20
|
-
strokeWidth="16"
|
|
21
|
-
></path>
|
|
22
|
-
<circle cx="84" cy="84" r="12"></circle>
|
|
23
|
-
</svg>
|
|
24
|
-
)
|
|
25
|
-
|
|
26
|
-
export default TagIcon
|
package/src/assets/X.tsx
DELETED
|
@@ -1,38 +0,0 @@
|
|
|
1
|
-
import React from 'react'
|
|
2
|
-
import type { FC } from 'react'
|
|
3
|
-
|
|
4
|
-
// Icon from Phosphor Icons
|
|
5
|
-
const X: FC = () => (
|
|
6
|
-
<svg
|
|
7
|
-
xmlns="http://www.w3.org/2000/svg"
|
|
8
|
-
fill="currentColor"
|
|
9
|
-
viewBox="0 0 256 256"
|
|
10
|
-
strokeWidth="16"
|
|
11
|
-
width={24}
|
|
12
|
-
height={24}
|
|
13
|
-
>
|
|
14
|
-
<rect width="256" height="256" fill="none"></rect>
|
|
15
|
-
<line
|
|
16
|
-
x1="200"
|
|
17
|
-
y1="56"
|
|
18
|
-
x2="56"
|
|
19
|
-
y2="200"
|
|
20
|
-
fill="none"
|
|
21
|
-
stroke="currentColor"
|
|
22
|
-
strokeLinecap="round"
|
|
23
|
-
strokeLinejoin="round"
|
|
24
|
-
></line>
|
|
25
|
-
<line
|
|
26
|
-
x1="200"
|
|
27
|
-
y1="200"
|
|
28
|
-
x2="56"
|
|
29
|
-
y2="56"
|
|
30
|
-
fill="none"
|
|
31
|
-
stroke="currentColor"
|
|
32
|
-
strokeLinecap="round"
|
|
33
|
-
strokeLinejoin="round"
|
|
34
|
-
></line>
|
|
35
|
-
</svg>
|
|
36
|
-
)
|
|
37
|
-
|
|
38
|
-
export default X
|
package/src/assets/XCircle.tsx
DELETED
|
@@ -1,46 +0,0 @@
|
|
|
1
|
-
import React from 'react'
|
|
2
|
-
import type { FC } from 'react'
|
|
3
|
-
|
|
4
|
-
// Icon from Phosphor Icons
|
|
5
|
-
const XCircle: FC = () => (
|
|
6
|
-
<svg
|
|
7
|
-
xmlns="http://www.w3.org/2000/svg"
|
|
8
|
-
fill="currentColor"
|
|
9
|
-
viewBox="0 0 256 256"
|
|
10
|
-
strokeWidth="16"
|
|
11
|
-
width={20}
|
|
12
|
-
height={20}
|
|
13
|
-
>
|
|
14
|
-
<rect width="256" height="256" fill="none"></rect>
|
|
15
|
-
<circle
|
|
16
|
-
cx="128"
|
|
17
|
-
cy="128"
|
|
18
|
-
r="96"
|
|
19
|
-
fill="none"
|
|
20
|
-
stroke="currentColor"
|
|
21
|
-
strokeMiterlimit="10"
|
|
22
|
-
></circle>
|
|
23
|
-
<line
|
|
24
|
-
x1="160"
|
|
25
|
-
y1="96"
|
|
26
|
-
x2="96"
|
|
27
|
-
y2="160"
|
|
28
|
-
fill="none"
|
|
29
|
-
stroke="currentColor"
|
|
30
|
-
strokeLinecap="round"
|
|
31
|
-
strokeLinejoin="round"
|
|
32
|
-
></line>
|
|
33
|
-
<line
|
|
34
|
-
x1="160"
|
|
35
|
-
y1="160"
|
|
36
|
-
x2="96"
|
|
37
|
-
y2="96"
|
|
38
|
-
fill="none"
|
|
39
|
-
stroke="currentColor"
|
|
40
|
-
strokeLinecap="round"
|
|
41
|
-
strokeLinejoin="round"
|
|
42
|
-
></line>
|
|
43
|
-
</svg>
|
|
44
|
-
)
|
|
45
|
-
|
|
46
|
-
export default XCircle
|
package/src/assets/index.ts
DELETED
|
@@ -1,29 +0,0 @@
|
|
|
1
|
-
// Payment Flags Icons
|
|
2
|
-
export * from './PaymentFlags'
|
|
3
|
-
|
|
4
|
-
export { default as ArrowElbowDownRight } from './ArrowElbowDownRight'
|
|
5
|
-
export { default as ArrowRight } from './ArrowRight'
|
|
6
|
-
export { default as BellRinging } from './BellRinging'
|
|
7
|
-
export { default as ArrowSquareOut } from './ArrowSquareOut'
|
|
8
|
-
export { default as CaretDown } from './CaretDown'
|
|
9
|
-
export { default as CaretRight } from './CaretRight'
|
|
10
|
-
export { default as Checked } from './Checked'
|
|
11
|
-
export { default as ClockClockwise } from './ClockClockwise'
|
|
12
|
-
export { default as DotsThree } from './DotsThree'
|
|
13
|
-
export { default as FadersHorizontal } from './FadersHorizontal'
|
|
14
|
-
export { default as Heart } from './Heart'
|
|
15
|
-
export { default as House } from './House'
|
|
16
|
-
export { default as Minus } from './Minus'
|
|
17
|
-
export { default as Plus } from './Plus'
|
|
18
|
-
export { default as MagnifyingGlass } from './MagnifyingGlass'
|
|
19
|
-
export { default as MapPin } from './MapPin'
|
|
20
|
-
export { default as MinusCircle } from './MinusCircle'
|
|
21
|
-
export { default as PlusCircle } from './PlusCircle'
|
|
22
|
-
export { default as Ruler } from './Ruler'
|
|
23
|
-
export { default as SealCheck } from './SealCheck'
|
|
24
|
-
export { default as SealWarning } from './SealWarning'
|
|
25
|
-
export { default as ShoppingCart } from './ShoppingCart'
|
|
26
|
-
export { default as Star } from './Star'
|
|
27
|
-
export { default as TagIcon } from './TagIcon'
|
|
28
|
-
export { default as X } from './X'
|
|
29
|
-
export { default as XCircle } from './XCircle'
|