@heycar-uikit/core
Version:
The React UI library from HeyCar
16 lines (15 loc) • 598 B
TypeScript
type BreakpointObjectType = {
s?: string | number;
m?: string | number;
l?: string | number;
};
type BreakpointObjectKeysType = keyof BreakpointObjectType;
type BreakpointType = string | number | BreakpointObjectType;
type BreakpointsType = {
mobile?: BreakpointType;
tablet?: BreakpointType;
desktop?: BreakpointType;
};
type BreakpointsKeysType = keyof BreakpointsType;
type ResponsivePropertyType = string | number | BreakpointsType;
export { BreakpointObjectType, BreakpointObjectKeysType, BreakpointType, BreakpointsType, BreakpointsKeysType, ResponsivePropertyType };