@naturacosmeticos/natds-web
Version:
A collection of components from Natura Design System for React websites and webapps
20 lines (19 loc) • 436 B
TypeScript
import * as React from 'react';
export interface IDrawerFooterProps {
/**
* @optional
* @todo make children property required
* @type node
*/
children?: React.ReactNode;
/**
* The component used for the root node.
*
* Either a `string` to use or a HTML element or a component.
*
* @default "div"
* @optional
* @type element
*/
component?: React.ElementType;
}