import React from 'react'; import Styled from './styles'; const STATS = { critical: { bars: 1, }, danger: { bars: 2, }, warning: { bars: 3, }, normal: { bars: 4, }, }; const Icon = ({ level, grayscale }) => ( <> = 2} /> = 3} /> = 4} /> ); export default Icon;