blob: 8dfede88cf3fff127505441c2d8c26cd14985a8f (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
|
import * as React from 'react';
import styled from 'styled-components';
import IconCoin from 'ts/@next/icons/illustrations/coin.svg';
interface Props {
name: string;
size?: 'small' | 'medium' | 'large' | number;
}
const ICONS = {
coin: IconCoin,
};
export const Icon: React.FunctionComponent<Props> = (props: Props) => {
const IconSVG = ICONS[props.name];
return (
<StyledIcon {...props}>
<IconSVG />
</StyledIcon>
);
};
const _getSize = (size: string | number = 'small'): string => {
if (isNaN(size)) {
return `var(--${size}Icon)`;
}
return `${size}px`;
};
const StyledIcon = styled.figure`
width: ${props => _getSize(props.size)};
height: ${props => _getSize(props.size)};
margin: 0;
flex-shrink: 0;
svg {
width: 100%;
height: 100%;
object-fit: cover;
}
`;
|