import React from 'react'; import { BarContainer, IndividualBar } from '@components/components/Bar/components'; import { BAR_HEIGHT_MULTIPLIER } from '@components/components/Bar/constant'; import { BarComponentProps } from '@components/components/Bar/types'; import { colors } from '@src/alchemy-components/theme'; const defaultProps: BarComponentProps = { color: colors.violet[500], coloredBars: 2, size: 'default', }; export const Bar = ({ color = defaultProps.color, coloredBars = defaultProps.coloredBars, size = defaultProps.size, }: BarComponentProps) => { const Bars = Array.from({ length: 3 }, (_, index) => { const barHeight = (index + 2) * BAR_HEIGHT_MULTIPLIER[size]; return ( ); }); return {Bars}; };