import { HorizontalStackedBarsProps } from '../horizontal-stacked-bar'; const mock: HorizontalStackedBarsProps = { data: [ { width: '25%', progressBarProps: { color: '#E46086', texts: { left: 'Left' } } }, { width: '25%', progressBarProps: { color: '#FF829D', texts: { top: 'Bottom' } } }, { width: '25%', progressBarProps: { color: '#6FCDCD', texts: { top: 'Top' } } }, { width: '25%', progressBarProps: { color: '#6BB9D7', texts: { right: 'Right' } }, tooltipProps: { title: 'Tooltip' } } ] }; export default mock;