UNPKG

zilly-ui

Version:

Zilly web react ui components

39 lines (26 loc) 873 B
--- name: DialogContent --- import { Playground, Props } from "docz"; import DialogContent from "./dialogContent"; # DialogContent ## Props | Property | Description | Type | Default | :---|:---|:---|:---| | children * | The content of the component. | node | - | | classes | object | Override or extend the styles applied to the component. See CSS API below for more details. | - | | dividers | Display the top and bottom dividers. | bool | false | ## Css | Property | Description | :---|:---| | root | Styles applied to the root element. | | dividers | Styles applied to the root element if dividers={true} | ## Notes 1.The ref is forwarded to the root element. 2.Any other properties supplied will be provided to the root element (native element). ### base usage <Playground> <DialogContent > DialogContent </DialogContent> </Playground>