import classNames from 'classnames'; import { Content } from './Elements'; const SettingsCard = ( { id, className, title, description, children, contentContainer = true, } ) => { const cardClassNames = classNames( 'ppcp-r-settings-card', className ); const cardProps = { className: cardClassNames, id, }; return (