@primer/react
Version:
An implementation of GitHub's Primer Design System using React
21 lines • 393 B
TypeScript
//#region src/Overlay/constants.d.ts
declare const heightMap: {
xsmall: string;
small: string;
medium: string;
large: string;
xlarge: string;
auto: string;
initial: string;
'fit-content': string;
};
declare const widthMap: {
small: string;
medium: string;
large: string;
xlarge: string;
xxlarge: string;
auto: string;
};
//#endregion
export { heightMap, widthMap };