Global

Last updated: 2.0.0 (22/01/2024)

ComponentSize

type ComponentSize = "xs" | "sm" | "md" | "lg" | "xl";

SizeClasses

type SizeClasses<C> = {
  xs: C;
  sm: C;
  md: C;
  lg: C;
  xl: C
};

FillVariant

type FillVariant = "subtle" | "light" | "filled";

GenericProps

Property
Type
Description

id

string

Used to specify a unique identifier for an element.

style

CSSProperties

Used to specify custom styling for an element. Unlike the native HTML style attribute, this will be passed into an Emotion css constructor before being added to the DOM.

tablIndex

tabIndex

Used to allow or prevent elements from being sequentially focusable. See more.

children

ReactNode

Children nodes.

Last updated

Was this helpful?