welcome-ui
Version:
Customizable design system with react • styled-components • styled-system and ariakit.
17 lines (16 loc) • 432 B
TypeScript
import { CSSObject } from '@xstyled/styled-components';
import { ThemeValues } from '../../theme';
export type ThemeLinks = {
default: CSSObject;
disabled: CSSObject;
primary: {
default: CSSObject;
hover: CSSObject;
};
secondary: {
default: CSSObject;
hover: CSSObject;
};
withExternalLink: CSSObject;
};
export declare const getLinks: (theme: ThemeValues) => ThemeLinks;