import { use } from '../utils'; import { inherit } from '../utils/functional'; // Types import { FunctionalComponent } from '../utils/use/sfc'; const [sfc, bem] = use('cell-group'); const CellGroup: FunctionalComponent = function ( h, props, slots, ctx ) { return (
{slots.default && slots.default()}
); }; export type CellGroupProps = { border?: boolean }; CellGroup.props = { border: { type: Boolean, default: true } }; export default sfc(CellGroup);