@amsterdam/design-system-react
Version:
All React components from the Amsterdam Design System. Use it to compose pages in your website or application.
16 lines (15 loc) • 774 B
TypeScript
/**
* @license EUPL-1.2+
* Copyright Gemeente Amsterdam
*/
export declare const aspectRatioOptions: readonly ["9:16", "3:4", "1:1", "4:3", "16:9", "16:5"];
export type AspectRatioProps = {
/** The aspect ratio to display media content in. */
aspectRatio?: (typeof aspectRatioOptions)[number];
};
export declare const crossAlignOptions: readonly ["start", "center", "baseline", "end"];
export type CrossAlign = (typeof crossAlignOptions)[number];
export declare const crossAlignOptionsForColumn: ("center" | "start" | "end")[];
export type CrossAlignForColumn = (typeof crossAlignOptionsForColumn)[number];
export declare const mainAlignOptions: readonly ["center", "end", "between", "around", "evenly"];
export type MainAlign = (typeof mainAlignOptions)[number];