14 lines
209 B
TypeScript
14 lines
209 B
TypeScript
// ----------------------------------------------------------------------
|
|
|
|
const breakpoints = {
|
|
values: {
|
|
xs: 0,
|
|
sm: 600,
|
|
md: 900,
|
|
lg: 1200,
|
|
xl: 1536
|
|
}
|
|
};
|
|
|
|
export default breakpoints;
|