githubEdit

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" | "outlined" | "paper" | "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.

tabIndex

number

Used to allow or prevent elements from being sequentially focusable. See morearrow-up-right.

children

ReactNode

Children nodes.

Last updated