import React, { CSSProperties, FC } from 'react' type WrapGridRowProps = { className?: string style?: CSSProperties hasCustomStyles?: boolean } const WrapGridRow: FC> = ({ hasCustomStyles, style, children, className }) => hasCustomStyles ? (
{children}
) : ( <>{children} ) export default WrapGridRow