import React from 'react' import moment from 'moment' import styles from './_two-line-date-label.module.scss' type TwoLineDateLabelProps = { x: number y: number payload: { value: string | number } xTickFormat?: boolean } const TwoLineDateLabel = ({ x, y, payload, xTickFormat, }: TwoLineDateLabelProps): React.JSX.Element => { const day = moment(new Date(payload.value)).utc() return ( {!xTickFormat ? day.format('MMM D') : payload.value} ) } export default TwoLineDateLabel