UNPKG

ideaz-element

Version:

<p align="center"> <a href="" target="_blank" rel="noopener noreferrer"> <img src="./docs/public/logo.svg" alt="Ideaz Element" width="180" style="width: 180px;" /> </a> </p>

26 lines (24 loc) 792 B
import { ExtractPropTypes } from 'vue'; export declare const RowJustify: readonly ["start", "center", "end", "space-around", "space-between", "space-evenly"]; export declare const RowAlign: readonly ["top", "middle", "bottom"]; export declare const rowProps: { tag: { type: StringConstructor; default: string; }; gutter: { type: NumberConstructor; default: number; }; justify: { type: StringConstructor; values: readonly ["start", "center", "end", "space-around", "space-between", "space-evenly"]; default: string; }; align: { type: StringConstructor; values: readonly ["top", "middle", "bottom"]; default: string; }; }; export type RowProps = ExtractPropTypes<typeof rowProps>;