gov-gui
Version:
Gov UI Component Library Typscript Build
98 lines (97 loc) • 2.51 kB
TypeScript
/**
* Row components can be used to quickly create basic grid layouts or to control your other component layouts,
* with options to align and justify content. They allow for flexible spacing and layout control at the column level.
*/
declare const _default: {
title: string;
tags: string[];
parameters: {
actions: {
handles: string[];
};
};
argTypes: {
align: {
control: string;
options: string[];
description: string;
table: {
type: {
summary: string;
};
defaultValue: {
summary: string;
};
category: string;
};
};
justify: {
control: string;
options: string[];
description: string;
table: {
type: {
summary: string;
};
defaultValue: {
summary: string;
};
category: string;
};
};
gap: {
control: string;
description: string;
table: {
type: {
summary: string;
};
defaultValue: {
summary: string;
};
category: string;
};
};
reverse: {
control: string;
description: string;
table: {
type: {
summary: string;
};
defaultValue: {
summary: boolean;
};
category: string;
};
};
classes: {
control: string;
description: string;
table: {
type: {
summary: string;
};
defaultValue: {
summary: string;
};
category: string;
};
};
styles: {
control: string;
description: string;
table: {
type: {
summary: string;
};
defaultValue: {
summary: string;
};
category: string;
};
};
};
};
export default _default;
export declare const Row: any;