Sha256: 869b221439541da3da18cefa20ece838610eda5b46b6616c157afbcf4f0e11fe
Contents?: true
Size: 681 Bytes
Versions: 644
Compression:
Stored size: 681 Bytes
Contents
import React from 'react' import classnames from 'classnames' import { buildCss } from '../../utilities/props' import { globalProps } from '../../utilities/globalProps' type DialogBodyProps = { children: React.ReactNode | React.ReactNode[] | string, padding?: "xxs" | "xs" | "sm" | "md" | "lg" | "xl", className?: string } // Body component const DialogBody = (props: DialogBodyProps): React.ReactElement => { const { children, className } = props const bodyCSS = buildCss("dialog_body") const bodySpacing = globalProps(props) return ( <div className={classnames(bodyCSS, bodySpacing, className)}> {children} </div> ) } export default DialogBody
Version data entries
644 entries across 644 versions & 1 rubygems