UNPKG

welcome-ui

Version:

Customizable design system with react • styled-components • styled-system and ariakit.

9 lines (8 loc) 284 B
import { CSSObject } from '@xstyled/styled-components'; import { ThemeValues } from '../../theme'; export type ThemeCheckboxes = { checked: CSSObject; default: CSSObject; disabled: CSSObject; }; export declare const getCheckboxes: (theme: ThemeValues) => ThemeCheckboxes;