12345678910111213141516171819202122232425262728293031323334353637 |
- import styled from '@emotion/styled';
- import {Level} from 'app/types';
- const DEFAULT_SIZE = '13px';
- function getLevelColor({level = '', theme}) {
- const COLORS = {
- error: theme.orange400,
- info: theme.blue300,
- warning: theme.orange300,
- fatal: theme.red300,
- sample: theme.purple300,
- };
- return `background-color: ${COLORS[level] || theme.orange400};`;
- }
- type Props = {
- size?: string;
- level?: Level;
- };
- const ErrorLevel = styled('span')<Props>`
- padding: 0;
- position: relative;
- width: ${p => p.size || DEFAULT_SIZE};
- height: ${p => p.size || DEFAULT_SIZE};
- text-indent: -9999em;
- display: inline-block;
- border-radius: 50%;
- flex-shrink: 0;
- ${getLevelColor}
- `;
- export default ErrorLevel;
|