import type {CSSProperties} from 'react'; import styled from '@emotion/styled'; /** * A simple progress bar. * ``` * * * * ``` * * Extend the components to set a background color. * * Return multiple components to render multiple bars directly on top * of each other with `position:absolute;`. */ export const Meter = styled('div')` position: relative; height: 100%; width: 100%; pointer-events: none; `; export const Value = styled('span')<{ style: {width: string} & CSSProperties; }>` max-width: 100%; position: absolute; height: 100%; pointer-events: none; `;