skillgrid 0.0.65 → 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.
@@ -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 {};