UNPKG

welcome-ui

Version:

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

10 lines (9 loc) 293 B
import { css } from '@xstyled/styled-components'; import { ThemeColors } from './colors'; export type ThemeUnderline = { default: ReturnType<typeof css>; hover: ReturnType<typeof css>; }; export declare const getUnderline: ({ colors }: { colors: ThemeColors; }) => ThemeUnderline;