import type { ComponentProps, ReactElement } from 'react'; import React from 'react'; const style = { width: '1.5em', height: '1.5em', verticalAlign: '-0.5em' }; type PositiveGrowthSymbolProps = Omit, 'style'>; const PositiveGrowthSymbol = (props: PositiveGrowthSymbolProps): ReactElement => ( ); export default PositiveGrowthSymbol;