react-restyle-components
Version:
Easy use restyle components
14 lines • 427 B
TypeScript
import React from 'react';
interface ListProps {
direction?: 'row' | 'col';
space?: number;
padding?: boolean;
background?: boolean;
align?: 'start' | 'between' | 'center' | 'end';
justify?: 'start' | 'end' | 'center' | 'stretch';
fill?: boolean;
children?: React.ReactNode;
}
export declare const List: React.FunctionComponent<ListProps>;
export {};
//# sourceMappingURL=list.component.d.ts.map