import React from 'react'; import Proptypes from 'prop-types'; import { YAxisContainer, YAxisSmallLine, YAxisBigContainer, YAxisValue, YAxisContainerValue, YAxisContainerSmallLine, } from './styledComponents'; import { YAxisProps } from '../../interfaces'; const YAxis = (props: YAxisProps): JSX.Element => { const { height } = props; return ( <> {height} {(height / 4) * 2} {height / 4} 0
); }; YAxis.propTypes = { height: Proptypes.number.isRequired, }; export default YAxis;