@gusarov-studio/rubik-ui 3.2.1 → 3.4.0

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.
@@ -4,7 +4,7 @@ import type { IconGlyph } from "./glyphs";
4
4
  import "./Icon.scss";
5
5
  export interface IconProps extends GlyphProps {
6
6
  glyph: IconGlyph;
7
- appearance?: "inherit" | "primary" | "secondary" | "accent" | "success" | "danger" | "info" | "warning" | "disabled" | "white" | "placeholder";
7
+ appearance?: "inherit" | "primary" | "secondary" | "accent" | "success" | "danger" | "info" | "warning" | "disabled" | "white" | "black" | "placeholder";
8
8
  }
9
9
  declare const Icon: React.ForwardRefExoticComponent<IconProps & React.RefAttributes<SVGSVGElement>>;
10
10
  export { Icon, type IconGlyph };
@@ -4,6 +4,8 @@ interface TabsListProps extends React.ComponentPropsWithoutRef<typeof TabsPrimit
4
4
  variant?: "underline" | "underline-filled";
5
5
  size?: "32" | "36" | "40";
6
6
  stretch?: boolean;
7
+ paddingLeft?: number;
8
+ paddingRight?: number;
7
9
  children?: React.ReactNode;
8
10
  }
9
11
  declare const TabsList: React.ForwardRefExoticComponent<TabsListProps & React.RefAttributes<HTMLDivElement>>;