import type { ComponentType, TextProps } from '../../../../jsx'; import { Group, Text } from '../../../../jsx'; import { ShapesGroup } from '../../../components'; import { registerDivider, type DividerProps } from './types'; export const ProsConsArrow: ComponentType = (props) => { const { x, y, colorPositive, colorNegative, colorBg } = props; const width = 200; const height = 141; const textAttrs: TextProps = { width: 90, height: 40, fontSize: 22, alignHorizontal: 'center', alignVertical: 'middle', fontWeight: 'bold', fill: colorBg, }; return ( Pros Cons ); }; registerDivider('pros-cons-arrow', ProsConsArrow);