skillgrid 0.0.64 → 0.0.66
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/components/Icon/IconCategories.d.ts +1 -0
- package/dist/components/Icon/useIcon.d.ts +1 -1
- package/dist/index.cjs.js +11 -11
- package/dist/index.css +1 -1
- package/dist/index.es.js +2863 -2840
- package/package.json +1 -1
|
@@ -268,6 +268,7 @@ export declare const ArrowsIcons: {
|
|
|
268
268
|
readonly ArrowPathClockwise: <E extends React.ElementType = "button">(props: Omit<IconProps<E>, "icon">) => React.ReactElement | null;
|
|
269
269
|
readonly ArrowRightOutlined: <E extends React.ElementType = "button">(props: Omit<IconProps<E>, "icon">) => React.ReactElement | null;
|
|
270
270
|
readonly ArrowSquareOutlined: <E extends React.ElementType = "button">(props: Omit<IconProps<E>, "icon">) => React.ReactElement | null;
|
|
271
|
+
readonly ArrowsToCenterOutlined: <E extends React.ElementType = "button">(props: Omit<IconProps<E>, "icon">) => React.ReactElement | null;
|
|
271
272
|
readonly ArrowUpDownOutlined: <E extends React.ElementType = "button">(props: Omit<IconProps<E>, "icon">) => React.ReactElement | null;
|
|
272
273
|
readonly ArrowUpOutlined: <E extends React.ElementType = "button">(props: Omit<IconProps<E>, "icon">) => React.ReactElement | null;
|
|
273
274
|
readonly ChevronCollapseOutlined: <E extends React.ElementType = "button">(props: Omit<IconProps<E>, "icon">) => React.ReactElement | null;
|
|
@@ -57,5 +57,5 @@ type UseIconReturn = {
|
|
|
57
57
|
} | Record<string, never>;
|
|
58
58
|
iconSize: IconSize;
|
|
59
59
|
};
|
|
60
|
-
export declare const useIcon: ({ Component, iconSize, mode, style, hoverStyle, pressedStyle, padding, background, shadow, showBorder, borderStyle, borderRadius, badge, checked, disabled, loading, onClick, onMouseEnter, onMouseLeave, className, styles, tabIndex, "aria-label": ariaLabel, role, }: UseIconParams) => UseIconReturn;
|
|
60
|
+
export declare const useIcon: ({ Component, iconSize, mode, style, customColor, hoverStyle, hoverCustomColor, pressedStyle, pressedCustomColor, padding, background, shadow, showBorder, borderStyle, borderRadius, badge, checked, disabled, loading, onClick, onMouseEnter, onMouseLeave, className, styles, tabIndex, "aria-label": ariaLabel, role, }: UseIconParams) => UseIconReturn;
|
|
61
61
|
export {};
|