import type { ComponentType } from '../../../../jsx'; import { Group, Text, TextProps } from '../../../../jsx'; import { ShapesGroup } from '../../../components'; import { registerDivider, type DividerProps } from './types'; export const ProsConsFold: ComponentType = (props) => { const { x, y, colorPositive, colorNegative, colorBg } = props; const width = 240; const height = 300; const textAttrs: TextProps = { width: 85, height: 30, fontSize: 20, alignHorizontal: 'center', alignVertical: 'middle', fontWeight: 'bold', fill: colorBg, }; return ( PROS CONS ); }; registerDivider('pros-cons-fold', ProsConsFold);