@epilot360/icons 1.17.46 → 1.17.47
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/README.md +23 -0
- package/icons.config.yaml +32 -0
- package/index.js +1229 -69
- package/index.js.map +1 -1
- package/package.json +1 -1
- package/react/Code/index.d.ts +4 -0
- package/react/Code/index.js +209 -0
- package/react/Code/index.js.map +1 -0
- package/react/EpilotIcon.d.ts +16 -0
- package/react/EpilotIcon.js +2946 -2058
- package/react/EpilotIcon.js.map +1 -1
- package/react/FormatBold/index.d.ts +4 -0
- package/react/FormatBold/index.js +209 -0
- package/react/FormatBold/index.js.map +1 -0
- package/react/FormatItalic/index.d.ts +4 -0
- package/react/FormatItalic/index.js +209 -0
- package/react/FormatItalic/index.js.map +1 -0
- package/react/FormatListBulleted/index.d.ts +4 -0
- package/react/FormatListBulleted/index.js +209 -0
- package/react/FormatListBulleted/index.js.map +1 -0
- package/react/FormatListNumbered/index.d.ts +4 -0
- package/react/FormatListNumbered/index.js +209 -0
- package/react/FormatListNumbered/index.js.map +1 -0
- package/react/FormatStrikethrough/index.d.ts +4 -0
- package/react/FormatStrikethrough/index.js +209 -0
- package/react/FormatStrikethrough/index.js.map +1 -0
- package/react/FormatUnderlined/index.d.ts +4 -0
- package/react/FormatUnderlined/index.js +209 -0
- package/react/FormatUnderlined/index.js.map +1 -0
- package/react/Heading/index.d.ts +4 -0
- package/react/Heading/index.js +209 -0
- package/react/Heading/index.js.map +1 -0
- package/react/index.d.ts +8 -0
- package/react/index.js +1513 -601
- package/react/index.js.map +1 -1
- package/svg/Code/icon-fill.svg +1 -0
- package/svg/Code/icon.svg +1 -0
- package/svg/Code/index.d.ts +3 -0
- package/svg/Code/index.js +159 -0
- package/svg/Code/index.js.map +1 -0
- package/svg/FormatBold/icon-fill.svg +1 -0
- package/svg/FormatBold/icon.svg +1 -0
- package/svg/FormatBold/index.d.ts +3 -0
- package/svg/FormatBold/index.js +159 -0
- package/svg/FormatBold/index.js.map +1 -0
- package/svg/FormatItalic/icon-fill.svg +1 -0
- package/svg/FormatItalic/icon.svg +1 -0
- package/svg/FormatItalic/index.d.ts +3 -0
- package/svg/FormatItalic/index.js +159 -0
- package/svg/FormatItalic/index.js.map +1 -0
- package/svg/FormatListBulleted/icon-fill.svg +1 -0
- package/svg/FormatListBulleted/icon.svg +1 -0
- package/svg/FormatListBulleted/index.d.ts +3 -0
- package/svg/FormatListBulleted/index.js +159 -0
- package/svg/FormatListBulleted/index.js.map +1 -0
- package/svg/FormatListNumbered/icon-fill.svg +1 -0
- package/svg/FormatListNumbered/icon.svg +1 -0
- package/svg/FormatListNumbered/index.d.ts +3 -0
- package/svg/FormatListNumbered/index.js +159 -0
- package/svg/FormatListNumbered/index.js.map +1 -0
- package/svg/FormatStrikethrough/icon-fill.svg +1 -0
- package/svg/FormatStrikethrough/icon.svg +1 -0
- package/svg/FormatStrikethrough/index.d.ts +3 -0
- package/svg/FormatStrikethrough/index.js +159 -0
- package/svg/FormatStrikethrough/index.js.map +1 -0
- package/svg/FormatUnderlined/icon-fill.svg +1 -0
- package/svg/FormatUnderlined/icon.svg +1 -0
- package/svg/FormatUnderlined/index.d.ts +3 -0
- package/svg/FormatUnderlined/index.js +159 -0
- package/svg/FormatUnderlined/index.js.map +1 -0
- package/svg/Heading/icon-fill.svg +1 -0
- package/svg/Heading/icon.svg +1 -0
- package/svg/Heading/index.d.ts +3 -0
- package/svg/Heading/index.js +159 -0
- package/svg/Heading/index.js.map +1 -0
- package/svg/index.d.ts +8 -0
- package/svg/index.js +714 -66
- package/svg/index.js.map +1 -1
- package/svg/svgIcon.d.ts +8 -0
- package/svg/svgIcon.js +692 -68
- package/svg/svgIcon.js.map +1 -1
package/svg/svgIcon.d.ts
CHANGED
|
@@ -242,6 +242,14 @@ export declare const svgMap: {
|
|
|
242
242
|
product_recommendation: (opts?: IconProps) => string;
|
|
243
243
|
location: (opts?: IconProps) => string;
|
|
244
244
|
labs: (opts?: IconProps) => string;
|
|
245
|
+
format_bold: (opts?: IconProps) => string;
|
|
246
|
+
format_italic: (opts?: IconProps) => string;
|
|
247
|
+
format_underlined: (opts?: IconProps) => string;
|
|
248
|
+
format_strikethrough: (opts?: IconProps) => string;
|
|
249
|
+
heading: (opts?: IconProps) => string;
|
|
250
|
+
format_list_bulleted: (opts?: IconProps) => string;
|
|
251
|
+
format_list_numbered: (opts?: IconProps) => string;
|
|
252
|
+
code: (opts?: IconProps) => string;
|
|
245
253
|
};
|
|
246
254
|
export type IconSVGName = keyof typeof svgMap;
|
|
247
255
|
type Opts = IconProps & {
|