@payfit/unity-icons 0.0.0-alpha.11
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 +96 -0
- package/dist/cjs/IconSprite.cjs +1 -0
- package/dist/cjs/IconSprite.d.cts +13 -0
- package/dist/cjs/UnityIconsProvider.cjs +1 -0
- package/dist/cjs/UnityIconsProvider.d.cts +23 -0
- package/dist/cjs/docs/blocks/Cards.d.cts +18 -0
- package/dist/cjs/docs/blocks/IconGallery.d.cts +4 -0
- package/dist/cjs/generated/index.cjs +1 -0
- package/dist/cjs/generated/index.d.cts +2 -0
- package/dist/cjs/generated/sprite.svg.cjs +1 -0
- package/dist/cjs/index.cjs +1 -0
- package/dist/cjs/index.d.cts +3 -0
- package/dist/cjs/utils.cjs +1 -0
- package/dist/cjs/utils.d.cts +6 -0
- package/dist/esm/IconSprite.d.ts +13 -0
- package/dist/esm/IconSprite.js +10 -0
- package/dist/esm/UnityIconsProvider.d.ts +23 -0
- package/dist/esm/UnityIconsProvider.js +39 -0
- package/dist/esm/docs/blocks/Cards.d.ts +18 -0
- package/dist/esm/docs/blocks/IconGallery.d.ts +4 -0
- package/dist/esm/generated/index.d.ts +2 -0
- package/dist/esm/generated/index.js +4 -0
- package/dist/esm/generated/sprite.svg.js +4 -0
- package/dist/esm/index.d.ts +3 -0
- package/dist/esm/index.js +9 -0
- package/dist/esm/utils.d.ts +6 -0
- package/dist/esm/utils.js +32 -0
- package/package.json +52 -0
package/README.md
ADDED
|
@@ -0,0 +1,96 @@
|
|
|
1
|
+
# @payfit/unity-icons
|
|
2
|
+
|
|
3
|
+
A comprehensive icon library for the Unity design system, provided as React Components.
|
|
4
|
+
|
|
5
|
+
## Installation
|
|
6
|
+
|
|
7
|
+
Install the package in your project. We recommend you use this package alongside `@payfit/unity-components`.
|
|
8
|
+
|
|
9
|
+
```bash
|
|
10
|
+
yarn add @payfit/unity-icons @payfit/unity-components
|
|
11
|
+
```
|
|
12
|
+
|
|
13
|
+
Ensure that `react` and `react-dom` are also installed in your project:
|
|
14
|
+
|
|
15
|
+
```bash
|
|
16
|
+
yarn add react react-dom
|
|
17
|
+
```
|
|
18
|
+
|
|
19
|
+
## Usage
|
|
20
|
+
|
|
21
|
+
This package provides two ways to import and use icons.
|
|
22
|
+
|
|
23
|
+
### 1. Import the provider
|
|
24
|
+
|
|
25
|
+
Wrap your application with the `IconProvider` to make all icons available in your application.
|
|
26
|
+
|
|
27
|
+
```tsx
|
|
28
|
+
import { UnityIconsProvider } from '@payfit/unity-icons'
|
|
29
|
+
|
|
30
|
+
function App() {
|
|
31
|
+
return (
|
|
32
|
+
<UnityIconsProvider>
|
|
33
|
+
<MyComponent />
|
|
34
|
+
</UnityIconsProvider>
|
|
35
|
+
)
|
|
36
|
+
}
|
|
37
|
+
```
|
|
38
|
+
|
|
39
|
+
### 2. Use the `IconSprite` component
|
|
40
|
+
|
|
41
|
+
Render any icon using the `IconSprite` component, passing the icon's name as the `src` prop.
|
|
42
|
+
|
|
43
|
+
```tsx
|
|
44
|
+
import { IconSprite } from '@payfit/unity-icons'
|
|
45
|
+
|
|
46
|
+
function MyComponent() {
|
|
47
|
+
return <IconSprite src="Icon1" />
|
|
48
|
+
}
|
|
49
|
+
```
|
|
50
|
+
|
|
51
|
+
### 3. Use the Icon component from unity components
|
|
52
|
+
|
|
53
|
+
You can also use the `Icon` component from `@payfit/unity-components` to render icons (recommended). The `Icon` component provides additional customization options that follow design system guidelines, and uses the `IconSprite` component internally.
|
|
54
|
+
|
|
55
|
+
```tsx
|
|
56
|
+
import { Icon } from '@payfit/unity-components'
|
|
57
|
+
|
|
58
|
+
function MyComponent() {
|
|
59
|
+
return <Icon src="Icon1" size={20} />
|
|
60
|
+
}
|
|
61
|
+
```
|
|
62
|
+
|
|
63
|
+
## API
|
|
64
|
+
|
|
65
|
+
The icons library uses SVG sprites to render icons. All icons are referenced by their name, which is the filename in the `/svg` folder without the extension.
|
|
66
|
+
The `IconSprite` component accepts all the props of an SVG element.
|
|
67
|
+
|
|
68
|
+
```tsx
|
|
69
|
+
import { IconSprite } from '@payfit/unity-icons'
|
|
70
|
+
|
|
71
|
+
function MyComponent() {
|
|
72
|
+
return <IconSprite src="AirplaneFilled" width="32" height="32" fill="#000" />
|
|
73
|
+
}
|
|
74
|
+
```
|
|
75
|
+
|
|
76
|
+
We recommend you customize the icon's color, sizes, and other properties via the `Icon` component from `@payfit/unity-components`.
|
|
77
|
+
|
|
78
|
+
## Customization
|
|
79
|
+
|
|
80
|
+
All icons use `currentColor` for their fill or stroke, allowing you to easily customize the color using CSS or the `color` prop.
|
|
81
|
+
|
|
82
|
+
## TypeScript Support
|
|
83
|
+
|
|
84
|
+
This package includes TypeScript definitions, and a list of all the available icon names is exported as a type.
|
|
85
|
+
|
|
86
|
+
```tsx
|
|
87
|
+
import { iconNames, UnityIcon } from '@payfit/unity-icons'
|
|
88
|
+
|
|
89
|
+
const myIcons: UnityIcon[] = ['AirplaneFilled', 'CakeOutlined']
|
|
90
|
+
|
|
91
|
+
console.log(iconNames) // ['AirplaneFilled', 'AirplaneOutlined', ...+309 icons more]
|
|
92
|
+
```
|
|
93
|
+
|
|
94
|
+
## Browser Support
|
|
95
|
+
|
|
96
|
+
This package supports all modern evergreen browsers. It does not support IE.
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
"use strict";Object.defineProperty(exports,Symbol.toStringTag,{value:"Module"});const e=require("react/jsx-runtime"),o=require("./UnityIconsProvider.cjs");function n({src:r,...t}){const{isLoaded:i}=o.useIconsContext();return i?e.jsx("svg",{...t,children:e.jsx("use",{href:`#${r}`})}):null}n.displayName="IconSprite";exports.IconSprite=n;
|
|
@@ -0,0 +1,13 @@
|
|
|
1
|
+
import { UnityIcon } from './generated/index.cjs';
|
|
2
|
+
type IconSpriteProps = React.SVGProps<SVGSVGElement> & {
|
|
3
|
+
/** The icon name to be displayed from Unity's icon library */
|
|
4
|
+
src: UnityIcon;
|
|
5
|
+
};
|
|
6
|
+
/**
|
|
7
|
+
* Renders an individual icon from Unity's icon library using an SVG sprite.
|
|
8
|
+
*/
|
|
9
|
+
export declare function IconSprite({ src, ...rest }: IconSpriteProps): import("react/jsx-runtime").JSX.Element | null;
|
|
10
|
+
export declare namespace IconSprite {
|
|
11
|
+
var displayName: string;
|
|
12
|
+
}
|
|
13
|
+
export {};
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
"use strict";Object.defineProperty(exports,Symbol.toStringTag,{value:"Module"});const e=require("react/jsx-runtime"),o=require("react"),c=require("./utils.cjs"),a=o.createContext(null);function l({children:t,onError:n,fallback:r}){const[u,i]=o.useState({isLoaded:!1,error:null,isLoading:!0});return o.useEffect(()=>{if(c.isSpriteInDocument()){i({isLoaded:!0,error:null,isLoading:!1});return}try{i(s=>({...s,isLoading:!0})),c.injectSprite(),i({isLoaded:!0,error:null,isLoading:!1})}catch(s){const d=s instanceof Error?s:new Error("Unknown error");i({isLoaded:!1,error:d,isLoading:!1}),n==null||n(d)}},[n]),u.error!==null?r!==void 0?e.jsx(e.Fragment,{children:r}):e.jsx("div",{children:"Failed to load Unity icons"}):u.isLoading&&r!==void 0?e.jsx(e.Fragment,{children:r}):e.jsx(a.Provider,{value:u,children:t})}l.displayName="UnityIconsProvider";function f(){const t=o.useContext(a);if(!t)throw new Error("useIconsContext must be used within a UnityIconsProvider");return t}exports.UnityIconsProvider=l;exports.useIconsContext=f;
|
|
@@ -0,0 +1,23 @@
|
|
|
1
|
+
import { ReactNode } from 'react';
|
|
2
|
+
interface IconsContextState {
|
|
3
|
+
isLoaded: boolean;
|
|
4
|
+
error: Error | null;
|
|
5
|
+
isLoading: boolean;
|
|
6
|
+
}
|
|
7
|
+
interface UnityIconsProviderProps {
|
|
8
|
+
/** The child nodes to be rendered within the provider */
|
|
9
|
+
children: ReactNode;
|
|
10
|
+
/** Optional callback to handle errors during sprite injection */
|
|
11
|
+
onError?: (error: Error) => void;
|
|
12
|
+
/** Optional fallback content to be displayed while loading or on error */
|
|
13
|
+
fallback?: ReactNode;
|
|
14
|
+
}
|
|
15
|
+
/**
|
|
16
|
+
* The `UnityIconsProvider` component is a context provider that ensures the Unity icon sprite sheet is loaded before rendering any icons, and exactly once for the current tree.
|
|
17
|
+
*/
|
|
18
|
+
export declare function UnityIconsProvider({ children, onError, fallback, }: UnityIconsProviderProps): import("react/jsx-runtime").JSX.Element;
|
|
19
|
+
export declare namespace UnityIconsProvider {
|
|
20
|
+
var displayName: string;
|
|
21
|
+
}
|
|
22
|
+
export declare function useIconsContext(): IconsContextState;
|
|
23
|
+
export {};
|
|
@@ -0,0 +1,18 @@
|
|
|
1
|
+
import { default as React } from 'react';
|
|
2
|
+
type CardProps = React.PropsWithChildren;
|
|
3
|
+
export declare const Card: React.FC<CardProps>;
|
|
4
|
+
export declare const CardWithCover: React.FC<CardProps & {
|
|
5
|
+
coverSrc: string;
|
|
6
|
+
coverAlt: string;
|
|
7
|
+
}>;
|
|
8
|
+
export declare const CardHeader: React.FC<React.PropsWithChildren>;
|
|
9
|
+
export declare const CardTitle: React.FC<React.PropsWithChildren>;
|
|
10
|
+
export declare const CardContent: React.FC<React.PropsWithChildren>;
|
|
11
|
+
export declare const CardActions: React.FC<React.PropsWithChildren>;
|
|
12
|
+
export declare const Link: React.FC<React.ComponentProps<"a">>;
|
|
13
|
+
type CardGridProps = {
|
|
14
|
+
children: React.ReactNode;
|
|
15
|
+
cols?: number;
|
|
16
|
+
};
|
|
17
|
+
export declare const CardGrid: React.FC<CardGridProps>;
|
|
18
|
+
export {};
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
"use strict";Object.defineProperty(exports,Symbol.toStringTag,{value:"Module"});const e=["AirplaneFilled","AirplaneOutlined","AlarmFilled","AlarmOutlined","ArrowCircleRightFilled","ArrowCircleRightOutlined","ArrowClockwiseFilled","ArrowClockwiseOutlined","ArrowDownFilled","ArrowDownOutlined","ArrowElbowRightFilled","ArrowElbowRightOutlined","ArrowLeftFilled","ArrowLeftOutlined","ArrowRightFilled","ArrowRightOutlined","ArrowSquareOutFilled","ArrowSquareOutOutlined","ArrowUpAndRightFilled","ArrowUpAndRightOutlined","ArrowUpFilled","ArrowUpOutlined","ArrowUpRightFilled","ArrowUpRightOutlined","AtFilled","AtOutlined","BabyFilled","BabyOutlined","BadgeFilled","BadgeOutlined","BankFilled","BankOutlined","BellFilled","BellOutlined","BookOpenTextFilled","BookOpenTextOutlined","BriefcaseFilled","BriefcaseOutlined","BrowserFilled","BrowserOutlined","BuildingsFilled","BuildingsOutlined","CakeFilled","CakeOutlined","CalendarBlankFilled","CalendarBlankOutlined","CalendarCheckFilled","CalendarCheckOutlined","CalendarEventFilled","CalendarEventOutlined","CalendarFilled","CalendarMonthFilled","CalendarMonthOutlined","CalendarOutlined","CalendarPlusFilled","CalendarPlusOutlined","CameraFilled","CameraOutlined","CaretDownFilled","CaretDownOutlined","CaretLeftFilled","CaretLeftOutlined","CaretRightFilled","CaretRightOutlined","CaretUpDownFilled","CaretUpDownOutlined","CaretUpFilled","CaretUpOutlined","ChartFilled","ChartOutlined","ChatQuestionFilled","ChatQuestionOutlined","ChatWarningFilled","ChatWarningOutlined","ChatsFilled","ChatsOutlined","CheckCircleFilled","CheckCircleOutlined","CheckFilled","CheckOutlined","ClipboardCheckFilled","ClipboardCheckOutlined","ClipboardFilled","ClipboardOutlined","ClockClockwiseFilled","ClockClockwiseOutlined","ClockCountdownFilled","ClockCountdownOutlined","ClockCounterClockwiseFilled","ClockCounterClockwiseOutlined","CloseCircleFilled","CloseCircleOutlined","CloseFilled","CloseOutlined","CloudArrowDownFilled","CloudArrowDownOutlined","CloudArrowUpFilled","CloudArrowUpOutlined","CodeSimpleFilled","CodeSimpleOutlined","ContactlessPaymentFilled","ContactlessPaymentOutlined","CopySimpleFilled","CopySimpleOutlined","CreditCardFilled","CreditCardOutlined","CreditCardPlusFilled","CreditCardPlusOutlined","CurrencyEuroFilled","CurrencyEuroOutlined","CurrencyPoundFilled","CurrencyPoundOutlined","DashboardFilled","DashboardOutlined","DevicesFilled","DevicesOutlined","DotsNineFilled","DotsNineOutlined","DotsSevenFilled","DotsSevenOutlined","DotsThreeFilled","DotsThreeOutlined","DownloadSimpleFilled","DownloadSimpleOutlined","EnvelopeFilled","EnvelopeOutlined","EyeFilled","EyeOutlined","EyeSlashFilled","EyeSlashOutlined","FileCheckFilled","FileCheckOutlined","FileFilled","FileOutlined","FilePaperclipFilled","FilePaperclipOutlined","FilePlusFilled","FilePlusOutlined","FileSearchFilled","FileSearchOutlined","FileSparkleFilled","FileSparkleOutlined","FingerPrintFilled","FingerPrintOutlined","FirstAidKitFilled","FirstAidKitOutlined","FlagFilled","FlagOutlined","FocusFilled","FocusOutlined","FolderFilled","FolderOutlined","FolderUserFilled","FolderUserOutlined","GavelFilled","GavelOutlined","GearArrowFilled","GearArrowOutlined","GearSimpleFilled","GearSimpleOutlined","GearSparkleFilled","GearSparkleOutlined","GiftFilled","GiftOutlined","GraduationCapFilled","GraduationCapOutlined","GridFourFilled","GridFourOutlined","HandCoinsFilled","HandCoinsOutlined","HandHeartFilled","HandHeartOutlined","HeadsetFilled","HeadsetOutlined","HeartFilled","HeartOutlined","HourglassFilled","HourglassOutlined","HouseFilled","HouseOutlined","ImageFilled","ImageOutlined","InfoFilled","InfoOutlined","LayoutFilled","LayoutOutlined","LightningFilled","LightningOutlined","ListFilled","ListOutlined","LockFilled","LockOutlined","MagnifyingGlassFilled","MagnifyingGlassOutlined","MapPinFilled","MapPinOutlined","MathOperationsFilled","MathOperationsOutlined","MoneyFilled","MoneyOutlined","NetworkFilled","NetworkOutlined","NoteBlankFilled","NoteBlankOutlined","NoteFilled","NoteOutlined","OrganizationChartFilled","OrganizationChartOutlined","PaperPlaneFilled","PaperPlaneOutlined","PaperclipFilled","PaperclipOutlined","PencilSimpleFilled","PencilSimpleOutlined","PeopleFilled","PeopleOutlined","PersonArmsSpreadFilled","PersonArmsSpreadOutlined","PhoneFilled","PhoneOutlined","PieChartFilled","PieChartOutlined","PiggyBankFilled","PiggyBankOutlined","PlusCircleFilled","PlusCircleOutlined","PlusFilled","PlusOutlined","PresentationChartFilled","PresentationChartOutlined","PresentationTimelineFilled","PresentationTimelineOutlined","ProhibitFilled","ProhibitOutlined","PuzzlePieceFilled","PuzzlePieceOutlined","QuestionFilled","QuestionOutlined","ReceiptFilled","ReceiptOutlined","RecycleFilled","RecycleOutlined","SealCheckFilled","SealCheckOutlined","ShareNetworkFilled","ShareNetworkOutlined","ShieldCheckFilled","ShieldCheckOutlined","ShieldChekeredFilled","ShieldChekeredOutlined","SignInFilled","SignInOutlined","SignOutFilled","SignOutOutlined","SignatureFilled","SignatureOutlined","SlidersHorizontalFilled","SlidersHorizontalOutlined","SpaFilled","SpaOutlined","SparkleFilled","SparkleOutlined","SpeedIndicatorFilled","SpeedIndicatorOutlined","StackSimpleFilled","StackSimpleOutlined","StarFilled","StarOutlined","StorefrontFilled","StorefrontOutlined","SwapFilled","SwapOutlined","TagFilled","TagOutlined","ThumbsUpFilled","ThumbsUpOutlined","TicketFilled","TicketOutlined","TimerFilled","TimerOutlined","TrashFilled","TrashOutlined","TrashSimpleFilled","TrashSimpleOutlined","TrashXFilled","TrashXOutlined","TreeStructureFilled","TreeStructureOutlined","TrendUpFilled","TrendUpOutlined","UploadSimpleFilled","UploadSimpleOutlined","UserCircleFilled","UserCircleOutlined","UserContactFilled","UserContactOutlined","UserFilled","UserFocusFilled","UserFocusOutlined","UserGreetingFilled","UserGreetingOutlined","UserOutlined","UserPlusFilled","UserPlusOutlined","UserRectangleFilled","UserRectangleOutlined","UsersFilled","UsersHeartFilled","UsersHeartOutlined","UsersOutlined","UsersSwitchFilled","UsersSwitchOutlined","UsersThreeFilled","UsersThreeOutlined","VirusFilled","VirusOutlined","WalletFilled","WalletOutlined","WarningCircleFilled","WarningCircleOutlined","WarningDiamondFilled","WarningDiamondOutlined","WarningFilled","WarningOutlined","WaveFilled","WaveOutlined","WifiHighFilled","WifiHighOutlined","WifiSlashFilled","WifiSlashOutlined"];exports.iconNames=e;
|
|
@@ -0,0 +1,2 @@
|
|
|
1
|
+
export type UnityIcon = 'AirplaneFilled' | 'AirplaneOutlined' | 'AlarmFilled' | 'AlarmOutlined' | 'ArrowCircleRightFilled' | 'ArrowCircleRightOutlined' | 'ArrowClockwiseFilled' | 'ArrowClockwiseOutlined' | 'ArrowDownFilled' | 'ArrowDownOutlined' | 'ArrowElbowRightFilled' | 'ArrowElbowRightOutlined' | 'ArrowLeftFilled' | 'ArrowLeftOutlined' | 'ArrowRightFilled' | 'ArrowRightOutlined' | 'ArrowSquareOutFilled' | 'ArrowSquareOutOutlined' | 'ArrowUpAndRightFilled' | 'ArrowUpAndRightOutlined' | 'ArrowUpFilled' | 'ArrowUpOutlined' | 'ArrowUpRightFilled' | 'ArrowUpRightOutlined' | 'AtFilled' | 'AtOutlined' | 'BabyFilled' | 'BabyOutlined' | 'BadgeFilled' | 'BadgeOutlined' | 'BankFilled' | 'BankOutlined' | 'BellFilled' | 'BellOutlined' | 'BookOpenTextFilled' | 'BookOpenTextOutlined' | 'BriefcaseFilled' | 'BriefcaseOutlined' | 'BrowserFilled' | 'BrowserOutlined' | 'BuildingsFilled' | 'BuildingsOutlined' | 'CakeFilled' | 'CakeOutlined' | 'CalendarBlankFilled' | 'CalendarBlankOutlined' | 'CalendarCheckFilled' | 'CalendarCheckOutlined' | 'CalendarEventFilled' | 'CalendarEventOutlined' | 'CalendarFilled' | 'CalendarMonthFilled' | 'CalendarMonthOutlined' | 'CalendarOutlined' | 'CalendarPlusFilled' | 'CalendarPlusOutlined' | 'CameraFilled' | 'CameraOutlined' | 'CaretDownFilled' | 'CaretDownOutlined' | 'CaretLeftFilled' | 'CaretLeftOutlined' | 'CaretRightFilled' | 'CaretRightOutlined' | 'CaretUpDownFilled' | 'CaretUpDownOutlined' | 'CaretUpFilled' | 'CaretUpOutlined' | 'ChartFilled' | 'ChartOutlined' | 'ChatQuestionFilled' | 'ChatQuestionOutlined' | 'ChatWarningFilled' | 'ChatWarningOutlined' | 'ChatsFilled' | 'ChatsOutlined' | 'CheckCircleFilled' | 'CheckCircleOutlined' | 'CheckFilled' | 'CheckOutlined' | 'ClipboardCheckFilled' | 'ClipboardCheckOutlined' | 'ClipboardFilled' | 'ClipboardOutlined' | 'ClockClockwiseFilled' | 'ClockClockwiseOutlined' | 'ClockCountdownFilled' | 'ClockCountdownOutlined' | 'ClockCounterClockwiseFilled' | 'ClockCounterClockwiseOutlined' | 'CloseCircleFilled' | 'CloseCircleOutlined' | 'CloseFilled' | 'CloseOutlined' | 'CloudArrowDownFilled' | 'CloudArrowDownOutlined' | 'CloudArrowUpFilled' | 'CloudArrowUpOutlined' | 'CodeSimpleFilled' | 'CodeSimpleOutlined' | 'ContactlessPaymentFilled' | 'ContactlessPaymentOutlined' | 'CopySimpleFilled' | 'CopySimpleOutlined' | 'CreditCardFilled' | 'CreditCardOutlined' | 'CreditCardPlusFilled' | 'CreditCardPlusOutlined' | 'CurrencyEuroFilled' | 'CurrencyEuroOutlined' | 'CurrencyPoundFilled' | 'CurrencyPoundOutlined' | 'DashboardFilled' | 'DashboardOutlined' | 'DevicesFilled' | 'DevicesOutlined' | 'DotsNineFilled' | 'DotsNineOutlined' | 'DotsSevenFilled' | 'DotsSevenOutlined' | 'DotsThreeFilled' | 'DotsThreeOutlined' | 'DownloadSimpleFilled' | 'DownloadSimpleOutlined' | 'EnvelopeFilled' | 'EnvelopeOutlined' | 'EyeFilled' | 'EyeOutlined' | 'EyeSlashFilled' | 'EyeSlashOutlined' | 'FileCheckFilled' | 'FileCheckOutlined' | 'FileFilled' | 'FileOutlined' | 'FilePaperclipFilled' | 'FilePaperclipOutlined' | 'FilePlusFilled' | 'FilePlusOutlined' | 'FileSearchFilled' | 'FileSearchOutlined' | 'FileSparkleFilled' | 'FileSparkleOutlined' | 'FingerPrintFilled' | 'FingerPrintOutlined' | 'FirstAidKitFilled' | 'FirstAidKitOutlined' | 'FlagFilled' | 'FlagOutlined' | 'FocusFilled' | 'FocusOutlined' | 'FolderFilled' | 'FolderOutlined' | 'FolderUserFilled' | 'FolderUserOutlined' | 'GavelFilled' | 'GavelOutlined' | 'GearArrowFilled' | 'GearArrowOutlined' | 'GearSimpleFilled' | 'GearSimpleOutlined' | 'GearSparkleFilled' | 'GearSparkleOutlined' | 'GiftFilled' | 'GiftOutlined' | 'GraduationCapFilled' | 'GraduationCapOutlined' | 'GridFourFilled' | 'GridFourOutlined' | 'HandCoinsFilled' | 'HandCoinsOutlined' | 'HandHeartFilled' | 'HandHeartOutlined' | 'HeadsetFilled' | 'HeadsetOutlined' | 'HeartFilled' | 'HeartOutlined' | 'HourglassFilled' | 'HourglassOutlined' | 'HouseFilled' | 'HouseOutlined' | 'ImageFilled' | 'ImageOutlined' | 'InfoFilled' | 'InfoOutlined' | 'LayoutFilled' | 'LayoutOutlined' | 'LightningFilled' | 'LightningOutlined' | 'ListFilled' | 'ListOutlined' | 'LockFilled' | 'LockOutlined' | 'MagnifyingGlassFilled' | 'MagnifyingGlassOutlined' | 'MapPinFilled' | 'MapPinOutlined' | 'MathOperationsFilled' | 'MathOperationsOutlined' | 'MoneyFilled' | 'MoneyOutlined' | 'NetworkFilled' | 'NetworkOutlined' | 'NoteBlankFilled' | 'NoteBlankOutlined' | 'NoteFilled' | 'NoteOutlined' | 'OrganizationChartFilled' | 'OrganizationChartOutlined' | 'PaperPlaneFilled' | 'PaperPlaneOutlined' | 'PaperclipFilled' | 'PaperclipOutlined' | 'PencilSimpleFilled' | 'PencilSimpleOutlined' | 'PeopleFilled' | 'PeopleOutlined' | 'PersonArmsSpreadFilled' | 'PersonArmsSpreadOutlined' | 'PhoneFilled' | 'PhoneOutlined' | 'PieChartFilled' | 'PieChartOutlined' | 'PiggyBankFilled' | 'PiggyBankOutlined' | 'PlusCircleFilled' | 'PlusCircleOutlined' | 'PlusFilled' | 'PlusOutlined' | 'PresentationChartFilled' | 'PresentationChartOutlined' | 'PresentationTimelineFilled' | 'PresentationTimelineOutlined' | 'ProhibitFilled' | 'ProhibitOutlined' | 'PuzzlePieceFilled' | 'PuzzlePieceOutlined' | 'QuestionFilled' | 'QuestionOutlined' | 'ReceiptFilled' | 'ReceiptOutlined' | 'RecycleFilled' | 'RecycleOutlined' | 'SealCheckFilled' | 'SealCheckOutlined' | 'ShareNetworkFilled' | 'ShareNetworkOutlined' | 'ShieldCheckFilled' | 'ShieldCheckOutlined' | 'ShieldChekeredFilled' | 'ShieldChekeredOutlined' | 'SignInFilled' | 'SignInOutlined' | 'SignOutFilled' | 'SignOutOutlined' | 'SignatureFilled' | 'SignatureOutlined' | 'SlidersHorizontalFilled' | 'SlidersHorizontalOutlined' | 'SpaFilled' | 'SpaOutlined' | 'SparkleFilled' | 'SparkleOutlined' | 'SpeedIndicatorFilled' | 'SpeedIndicatorOutlined' | 'StackSimpleFilled' | 'StackSimpleOutlined' | 'StarFilled' | 'StarOutlined' | 'StorefrontFilled' | 'StorefrontOutlined' | 'SwapFilled' | 'SwapOutlined' | 'TagFilled' | 'TagOutlined' | 'ThumbsUpFilled' | 'ThumbsUpOutlined' | 'TicketFilled' | 'TicketOutlined' | 'TimerFilled' | 'TimerOutlined' | 'TrashFilled' | 'TrashOutlined' | 'TrashSimpleFilled' | 'TrashSimpleOutlined' | 'TrashXFilled' | 'TrashXOutlined' | 'TreeStructureFilled' | 'TreeStructureOutlined' | 'TrendUpFilled' | 'TrendUpOutlined' | 'UploadSimpleFilled' | 'UploadSimpleOutlined' | 'UserCircleFilled' | 'UserCircleOutlined' | 'UserContactFilled' | 'UserContactOutlined' | 'UserFilled' | 'UserFocusFilled' | 'UserFocusOutlined' | 'UserGreetingFilled' | 'UserGreetingOutlined' | 'UserOutlined' | 'UserPlusFilled' | 'UserPlusOutlined' | 'UserRectangleFilled' | 'UserRectangleOutlined' | 'UsersFilled' | 'UsersHeartFilled' | 'UsersHeartOutlined' | 'UsersOutlined' | 'UsersSwitchFilled' | 'UsersSwitchOutlined' | 'UsersThreeFilled' | 'UsersThreeOutlined' | 'VirusFilled' | 'VirusOutlined' | 'WalletFilled' | 'WalletOutlined' | 'WarningCircleFilled' | 'WarningCircleOutlined' | 'WarningDiamondFilled' | 'WarningDiamondOutlined' | 'WarningFilled' | 'WarningOutlined' | 'WaveFilled' | 'WaveOutlined' | 'WifiHighFilled' | 'WifiHighOutlined' | 'WifiSlashFilled' | 'WifiSlashOutlined';
|
|
2
|
+
export declare const iconNames: UnityIcon[];
|