welcome-ui
Version:
Customizable design system with react • styled-components • styled-system and ariakit.
10 lines (9 loc) • 315 B
TypeScript
import { CSSObject } from '@xstyled/styled-components';
import { ThemeValues } from '../../theme';
export type ThemeDateTimePickerCommon = {
item: {
selected: CSSObject;
today: CSSObject;
};
};
export declare const getDateTimePickerCommon: (theme: ThemeValues) => ThemeDateTimePickerCommon;