welcome-ui
Version:
Customizable design system with react • styled-components • styled-system and ariakit.
10 lines (9 loc) • 339 B
TypeScript
import { CSSObject } from '@xstyled/styled-components';
import { ThemeValues } from '../../theme';
export type ThemeFileDrops = {
default: CSSObject;
disabled: CSSObject;
dragAccept: Record<string, unknown>;
dragReject: Record<string, unknown>;
};
export declare const getFileDrops: (theme: ThemeValues) => ThemeFileDrops;