UNPKG

welcome-ui

Version:

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

12 lines (11 loc) 333 B
import { CSSObject } from '@xstyled/styled-components'; import { ThemeValues } from '../../theme'; export type ThemeRadios = { checked: CSSObject; checkedCenteredColor: { default: string; disabled: string; }; default: CSSObject; }; export declare const getRadios: (theme: ThemeValues) => ThemeRadios;