norma-library
Version:
Olos/Norma-DS. Design System based on Material UI, developed with TypeScript and Styled Components to create reusable and consistent components in web applications.
14 lines (11 loc) • 330 B
text/typescript
import { SxProps } from '@mui/material';
import { Theme } from '@emotion/react';
import { DatePickVariant } from '../types';
export interface TimePickerBaseProps {
sx?: SxProps<Theme>;
label?: string;
timezone?: string;
language?: string;
onChange?: React.ChangeEvent<HTMLInputElement>;
variant?: DatePickVariant;
}