1 import { shortHumanSize } from '@proton/shared/lib/helpers/humanSize';
6 const HeaderSize = ({ size }: Props) => {
7 const readableSize = shortHumanSize(size);
11 <span className="color-disabled mx-2" aria-hidden="true">
14 <span className="color-weak text-pre">{readableSize}</span>
19 export default HeaderSize;