diff --git a/.gitignore b/.gitignore index f20d5e27..b08ead5e 100644 --- a/.gitignore +++ b/.gitignore @@ -16,6 +16,7 @@ yalc.lock /storybook-static # misc +/.idea .DS_Store .env.local .env.development.local diff --git a/src/dataDisplay/Icon/icon.stories.tsx b/src/dataDisplay/Icon/icon.stories.tsx index 0755dda9..442c5907 100644 --- a/src/dataDisplay/Icon/icon.stories.tsx +++ b/src/dataDisplay/Icon/icon.stories.tsx @@ -63,6 +63,7 @@ export const Icons = (): React.ReactElement => { 'eyeOff', 'filledCross', 'fingerPrint', + 'fuelIndicator', 'getInTouch', 'home', 'info', diff --git a/src/dataDisplay/Icon/images/fuelIndicator.tsx b/src/dataDisplay/Icon/images/fuelIndicator.tsx new file mode 100644 index 00000000..9b033291 --- /dev/null +++ b/src/dataDisplay/Icon/images/fuelIndicator.tsx @@ -0,0 +1,46 @@ +import React from 'react'; + +export default { + sm: ( + + + + + + + + + + ), + md: ( + + + + + + + + ), +}; diff --git a/src/dataDisplay/Icon/index.tsx b/src/dataDisplay/Icon/index.tsx index b4fddea0..ff7483ab 100644 --- a/src/dataDisplay/Icon/index.tsx +++ b/src/dataDisplay/Icon/index.tsx @@ -33,6 +33,7 @@ import eye from './images/eye'; import eyeOff from './images/eyeOff'; import filledCross from './images/filledCross'; import fingerPrint from './images/fingerPrint'; +import fuelIndicator from './images/fuelIndicator'; import getInTouch from './images/getInTouch'; import home from './images/home'; import info from './images/info'; @@ -72,7 +73,7 @@ import userEdit from './images/userEdit'; import wallet from './images/wallet'; import { rgba } from 'polished'; -import theme, { Theme, ThemeColors, ThemeIconSize } from '../../theme'; +import theme, { ThemeColors, ThemeIconSize } from '../../theme'; const StyledIcon = styled.span<{ color?: ThemeColors }>` .icon-color { @@ -121,6 +122,7 @@ const icons = { eyeOff, filledCross, fingerPrint, + fuelIndicator, getInTouch, home, info,