@abqm-ds/icons 1.0.3
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/.turbo/turbo-build.log +20 -0
- package/.turbo/turbo-clean.log +4 -0
- package/CHANGELOG.md +19 -0
- package/README.md +141 -0
- package/dist/index.cjs +2494 -0
- package/dist/index.d.cts +46 -0
- package/dist/index.d.ts +46 -0
- package/dist/index.js +2460 -0
- package/package.json +32 -0
- package/scripts/move-icons.js +84 -0
- package/src/_temp/AwardFill.tsx +24 -0
- package/src/_temp/Broadcast.tsx +26 -0
- package/src/_temp/CaretDown.tsx +19 -0
- package/src/_temp/CaretRight.tsx +19 -0
- package/src/_temp/Facebook.tsx +19 -0
- package/src/_temp/Filter.tsx +19 -0
- package/src/_temp/Horse.tsx +17 -0
- package/src/_temp/Instagram.tsx +19 -0
- package/src/_temp/ListOl.tsx +26 -0
- package/src/_temp/LogoSeqm.tsx +80 -0
- package/src/_temp/LogoSeqmMobile.tsx +36 -0
- package/src/_temp/Menu.tsx +21 -0
- package/src/_temp/PencilSquare.tsx +26 -0
- package/src/_temp/PersonCircle.tsx +27 -0
- package/src/_temp/Plus.tsx +19 -0
- package/src/_temp/Printer.tsx +19 -0
- package/src/_temp/Search.tsx +26 -0
- package/src/_temp/Star.tsx +19 -0
- package/src/_temp/X.tsx +19 -0
- package/src/_temp/Youtube.tsx +19 -0
- package/src/components/AwardFillIcon.tsx +23 -0
- package/src/components/BoxArrowInLeftIcon.tsx +25 -0
- package/src/components/BroadcastIcon.tsx +25 -0
- package/src/components/CaretDownIcon.tsx +18 -0
- package/src/components/CaretRightIcon.tsx +18 -0
- package/src/components/FacebookIcon.tsx +18 -0
- package/src/components/FilterIcon.tsx +18 -0
- package/src/components/HorseIcon.tsx +16 -0
- package/src/components/InstagramIcon.tsx +18 -0
- package/src/components/ListOlIcon.tsx +25 -0
- package/src/components/LogoSeqmIcon.tsx +79 -0
- package/src/components/LogoSeqmMobileIcon.tsx +35 -0
- package/src/components/MenuIcon.tsx +20 -0
- package/src/components/PencilSquareIcon.tsx +25 -0
- package/src/components/PersonCircleIcon.tsx +26 -0
- package/src/components/PlusIcon.tsx +18 -0
- package/src/components/PrinterIcon.tsx +18 -0
- package/src/components/SearchIcon.tsx +25 -0
- package/src/components/StarIcon.tsx +18 -0
- package/src/components/XIcon.tsx +18 -0
- package/src/components/YoutubeIcon.tsx +18 -0
- package/src/icons/AwardFill.svg +4 -0
- package/src/icons/BoxArrowInLeft.svg +4 -0
- package/src/icons/Broadcast.svg +10 -0
- package/src/icons/CaretDown.svg +3 -0
- package/src/icons/CaretRight.svg +3 -0
- package/src/icons/Facebook.svg +3 -0
- package/src/icons/Filter.svg +3 -0
- package/src/icons/Horse.svg +3 -0
- package/src/icons/Instagram.svg +3 -0
- package/src/icons/ListOl.svg +4 -0
- package/src/icons/LogoSeqm.svg +44 -0
- package/src/icons/LogoSeqmMobile.svg +10 -0
- package/src/icons/Menu.svg +3 -0
- package/src/icons/PencilSquare.svg +4 -0
- package/src/icons/PersonCircle.svg +11 -0
- package/src/icons/Plus.svg +3 -0
- package/src/icons/Printer.svg +3 -0
- package/src/icons/Search.svg +10 -0
- package/src/icons/Star.svg +3 -0
- package/src/icons/X.svg +3 -0
- package/src/icons/Youtube.svg +3 -0
- package/src/index.ts +32 -0
- package/tsconfig.json +20 -0
- package/tsup.config.ts +10 -0
package/dist/index.d.cts
ADDED
|
@@ -0,0 +1,46 @@
|
|
|
1
|
+
import * as react_jsx_runtime from 'react/jsx-runtime';
|
|
2
|
+
import { SVGProps } from 'react';
|
|
3
|
+
|
|
4
|
+
declare const FacebookIcon: (props: SVGProps<SVGSVGElement>) => react_jsx_runtime.JSX.Element;
|
|
5
|
+
|
|
6
|
+
declare const HorseIcon: (props: SVGProps<SVGSVGElement>) => react_jsx_runtime.JSX.Element;
|
|
7
|
+
|
|
8
|
+
declare const InstagramIcon: (props: SVGProps<SVGSVGElement>) => react_jsx_runtime.JSX.Element;
|
|
9
|
+
|
|
10
|
+
declare const FilterIcon: (props: SVGProps<SVGSVGElement>) => react_jsx_runtime.JSX.Element;
|
|
11
|
+
|
|
12
|
+
declare const PlusIcon: (props: SVGProps<SVGSVGElement>) => react_jsx_runtime.JSX.Element;
|
|
13
|
+
|
|
14
|
+
declare const PrinterIcon: (props: SVGProps<SVGSVGElement>) => react_jsx_runtime.JSX.Element;
|
|
15
|
+
|
|
16
|
+
declare const YoutubeIcon: (props: SVGProps<SVGSVGElement>) => react_jsx_runtime.JSX.Element;
|
|
17
|
+
|
|
18
|
+
declare const CaretDownIcon: (props: SVGProps<SVGSVGElement>) => react_jsx_runtime.JSX.Element;
|
|
19
|
+
|
|
20
|
+
declare const CaretRightIcon: (props: SVGProps<SVGSVGElement>) => react_jsx_runtime.JSX.Element;
|
|
21
|
+
|
|
22
|
+
declare const PersonCircleIcon: (props: SVGProps<SVGSVGElement>) => react_jsx_runtime.JSX.Element;
|
|
23
|
+
|
|
24
|
+
declare const LogoSeqmIcon: (props: SVGProps<SVGSVGElement>) => react_jsx_runtime.JSX.Element;
|
|
25
|
+
|
|
26
|
+
declare const AwardFillIcon: (props: SVGProps<SVGSVGElement>) => react_jsx_runtime.JSX.Element;
|
|
27
|
+
|
|
28
|
+
declare const BroadcastIcon: (props: SVGProps<SVGSVGElement>) => react_jsx_runtime.JSX.Element;
|
|
29
|
+
|
|
30
|
+
declare const ListOlIcon: (props: SVGProps<SVGSVGElement>) => react_jsx_runtime.JSX.Element;
|
|
31
|
+
|
|
32
|
+
declare const StarIcon: (props: SVGProps<SVGSVGElement>) => react_jsx_runtime.JSX.Element;
|
|
33
|
+
|
|
34
|
+
declare const PencilSquareIcon: (props: SVGProps<SVGSVGElement>) => react_jsx_runtime.JSX.Element;
|
|
35
|
+
|
|
36
|
+
declare const SearchIcon: (props: SVGProps<SVGSVGElement>) => react_jsx_runtime.JSX.Element;
|
|
37
|
+
|
|
38
|
+
declare const LogoSeqmMobileIcon: (props: SVGProps<SVGSVGElement>) => react_jsx_runtime.JSX.Element;
|
|
39
|
+
|
|
40
|
+
declare const MenuIcon: (props: SVGProps<SVGSVGElement>) => react_jsx_runtime.JSX.Element;
|
|
41
|
+
|
|
42
|
+
declare const XIcon: (props: SVGProps<SVGSVGElement>) => react_jsx_runtime.JSX.Element;
|
|
43
|
+
|
|
44
|
+
declare const BoxArrowInLeftIcon: (props: SVGProps<SVGSVGElement>) => react_jsx_runtime.JSX.Element;
|
|
45
|
+
|
|
46
|
+
export { AwardFillIcon, BoxArrowInLeftIcon, BroadcastIcon, CaretDownIcon, CaretRightIcon, FacebookIcon, FilterIcon, HorseIcon, InstagramIcon, ListOlIcon, LogoSeqmIcon, LogoSeqmMobileIcon, MenuIcon, PencilSquareIcon, PersonCircleIcon, PlusIcon, PrinterIcon, SearchIcon, StarIcon, XIcon, YoutubeIcon };
|
package/dist/index.d.ts
ADDED
|
@@ -0,0 +1,46 @@
|
|
|
1
|
+
import * as react_jsx_runtime from 'react/jsx-runtime';
|
|
2
|
+
import { SVGProps } from 'react';
|
|
3
|
+
|
|
4
|
+
declare const FacebookIcon: (props: SVGProps<SVGSVGElement>) => react_jsx_runtime.JSX.Element;
|
|
5
|
+
|
|
6
|
+
declare const HorseIcon: (props: SVGProps<SVGSVGElement>) => react_jsx_runtime.JSX.Element;
|
|
7
|
+
|
|
8
|
+
declare const InstagramIcon: (props: SVGProps<SVGSVGElement>) => react_jsx_runtime.JSX.Element;
|
|
9
|
+
|
|
10
|
+
declare const FilterIcon: (props: SVGProps<SVGSVGElement>) => react_jsx_runtime.JSX.Element;
|
|
11
|
+
|
|
12
|
+
declare const PlusIcon: (props: SVGProps<SVGSVGElement>) => react_jsx_runtime.JSX.Element;
|
|
13
|
+
|
|
14
|
+
declare const PrinterIcon: (props: SVGProps<SVGSVGElement>) => react_jsx_runtime.JSX.Element;
|
|
15
|
+
|
|
16
|
+
declare const YoutubeIcon: (props: SVGProps<SVGSVGElement>) => react_jsx_runtime.JSX.Element;
|
|
17
|
+
|
|
18
|
+
declare const CaretDownIcon: (props: SVGProps<SVGSVGElement>) => react_jsx_runtime.JSX.Element;
|
|
19
|
+
|
|
20
|
+
declare const CaretRightIcon: (props: SVGProps<SVGSVGElement>) => react_jsx_runtime.JSX.Element;
|
|
21
|
+
|
|
22
|
+
declare const PersonCircleIcon: (props: SVGProps<SVGSVGElement>) => react_jsx_runtime.JSX.Element;
|
|
23
|
+
|
|
24
|
+
declare const LogoSeqmIcon: (props: SVGProps<SVGSVGElement>) => react_jsx_runtime.JSX.Element;
|
|
25
|
+
|
|
26
|
+
declare const AwardFillIcon: (props: SVGProps<SVGSVGElement>) => react_jsx_runtime.JSX.Element;
|
|
27
|
+
|
|
28
|
+
declare const BroadcastIcon: (props: SVGProps<SVGSVGElement>) => react_jsx_runtime.JSX.Element;
|
|
29
|
+
|
|
30
|
+
declare const ListOlIcon: (props: SVGProps<SVGSVGElement>) => react_jsx_runtime.JSX.Element;
|
|
31
|
+
|
|
32
|
+
declare const StarIcon: (props: SVGProps<SVGSVGElement>) => react_jsx_runtime.JSX.Element;
|
|
33
|
+
|
|
34
|
+
declare const PencilSquareIcon: (props: SVGProps<SVGSVGElement>) => react_jsx_runtime.JSX.Element;
|
|
35
|
+
|
|
36
|
+
declare const SearchIcon: (props: SVGProps<SVGSVGElement>) => react_jsx_runtime.JSX.Element;
|
|
37
|
+
|
|
38
|
+
declare const LogoSeqmMobileIcon: (props: SVGProps<SVGSVGElement>) => react_jsx_runtime.JSX.Element;
|
|
39
|
+
|
|
40
|
+
declare const MenuIcon: (props: SVGProps<SVGSVGElement>) => react_jsx_runtime.JSX.Element;
|
|
41
|
+
|
|
42
|
+
declare const XIcon: (props: SVGProps<SVGSVGElement>) => react_jsx_runtime.JSX.Element;
|
|
43
|
+
|
|
44
|
+
declare const BoxArrowInLeftIcon: (props: SVGProps<SVGSVGElement>) => react_jsx_runtime.JSX.Element;
|
|
45
|
+
|
|
46
|
+
export { AwardFillIcon, BoxArrowInLeftIcon, BroadcastIcon, CaretDownIcon, CaretRightIcon, FacebookIcon, FilterIcon, HorseIcon, InstagramIcon, ListOlIcon, LogoSeqmIcon, LogoSeqmMobileIcon, MenuIcon, PencilSquareIcon, PersonCircleIcon, PlusIcon, PrinterIcon, SearchIcon, StarIcon, XIcon, YoutubeIcon };
|