UNPKG

welcome-ui

Version:

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

13 lines (12 loc) 361 B
import { CSSObject } from '@xstyled/styled-components'; import { ThemeValues } from '../../theme'; export type ThemeBreadcrumbs = { item: { active: CSSObject; default: CSSObject; hover: CSSObject; }; list: CSSObject; separator: CSSObject; }; export declare const getBreadcrumbs: (theme: ThemeValues) => ThemeBreadcrumbs;