Sha256: 5b70ed40123cda8705c7e27c4de971f8a88957c98c01ae058d1f2a90ff0bf31a
Contents?: true
Size: 841 Bytes
Versions: 943
Compression:
Stored size: 841 Bytes
Contents
import React from 'react' import classnames from 'classnames' import { GlobalProps, globalProps } from '../../utilities/globalProps' import Card from '../../pb_card/_card' export type FilterBackgroundProps = { background: boolean, className: string, children?: React.ReactChild[] | React.ReactChild, dark: boolean, } & GlobalProps const FilterBackground = (props: FilterBackgroundProps): React.ReactElement => { const { background = true, className, children, dark } = props return ( <div className={classnames(`pb_filter_kit ${className}`, globalProps(props))}> { background ? <Card dark={dark} padding="none" > {children} </Card> : <> {children} </> } </div> ) } export default FilterBackground
Version data entries
943 entries across 943 versions & 1 rubygems