import React from 'react'; import Typography from '../../Typography'; const AxisLabel = ({ label, numberOfLines = 1, textAlign = 'right', }: { label: string; numberOfLines?: number; textAlign?: 'right' | 'center'; }) => ( {label} ); export default AxisLabel;