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

Version Path
playbook_ui-13.14.0.pre.alpha.play1120lintdatepicker1797 app/pb_kits/playbook/pb_dialog/child_kits/_dialog_body.tsx
playbook_ui-13.15.0 app/pb_kits/playbook/pb_dialog/child_kits/_dialog_body.tsx
playbook_ui-13.13.0.pre.alpha.play10821727 app/pb_kits/playbook/pb_dialog/child_kits/_dialog_body.tsx
playbook_ui-13.13.0.pre.alpha.play10821726 app/pb_kits/playbook/pb_dialog/child_kits/_dialog_body.tsx