liber-salti
Version:
Saltí - Liber Design System
16 lines (15 loc) • 408 B
TypeScript
import React from 'react';
export interface DrawerActionsProps {
/**
* If `true`, the grid layout will use width: 100%.
*/
fullWidth?: boolean;
/**
* If `vertical`, items will be shown side by side, otherside one under the other.
*/
variant?: 'vertical' | 'horizontal';
/**
* The children of the component.
*/
children: React.ReactNode;
}