@adaptabletools/adaptable
Version:
Powerful AG Grid extension which provides advanced, cutting-edge functionality to meet all DataGrid requirements
8 lines (7 loc) • 360 B
JavaScript
import { jsx as _jsx } from "react/jsx-runtime";
import { cn } from '../../lib/utils';
import { Box } from '../Flex';
export const baseClassName = 'ab-WarningBox';
export const WarningBox = (props) => {
return (_jsx(Box, { ...props, className: cn('twa:p-3 twa:rounded-standard twa:bg-warn twa:text-warn-foreground', baseClassName, props.className) }));
};