import { ElementTypeEnum } from '../../constants'; import type { TextProps } from '../../jsx'; import { Text } from '../../jsx'; export interface ItemLabelProps extends TextProps { indexes: number[]; } export const ItemLabel = ({ indexes, children, ...props }: ItemLabelProps) => { const finalProps: TextProps = { fontSize: 18, fontWeight: 'bold', fill: '#252525', lineHeight: 1.4, children, ...props, }; finalProps.height ??= Math.ceil( +finalProps.lineHeight! * +finalProps.fontSize!, ); return ( ); };