welcome-ui
Version:
Customizable design system with react • styled-components • styled-system and ariakit.
11 lines (10 loc) • 310 B
TypeScript
import { CSSObject } from '@xstyled/styled-components';
import { ThemeColors } from './colors';
export type ThemeFocus = (color?: string) => {
boxShadow: CSSObject['boxShadow'];
};
export declare const getFocus: ({ colors }: {
colors: ThemeColors;
}) => (color?: string) => {
boxShadow: string;
};