Created
September 24, 2018 13:14
-
-
Save SilencerWeb/085ec215dc163ef93baf8a1d4636b7bb to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import * as React from 'react'; | |
import styled, { css } from 'styled-components'; | |
import PropTypes from 'prop-types'; | |
const Wrapper = styled.svg` | |
display: inline-block; | |
vertical-align: top; | |
fill: currentColor; | |
${p => css` | |
${p.svgWidth && p.svgHeight && css` | |
width: ${p.svgWidth / p.svgHeight}em; | |
height: 1em; | |
font-size: ${p.height || p.svgHeight / 10}rem; // p.svgHeight / 10 is transfer from PX into REM | |
`}; | |
`} | |
`; | |
export const Icon = (props) => { | |
const svgWidth = props.icon.node.viewBox.animVal.width; | |
const svgHeight = props.icon.node.viewBox.animVal.height; | |
return ( | |
<Wrapper | |
className={ props.className } | |
svgWidth={ svgWidth } | |
svgHeight={ svgHeight } | |
height={ props.height } | |
onClick={ props.onClick } | |
> | |
<use xlinkHref={ `#${props.icon.id}` }/> | |
</Wrapper> | |
); | |
}; | |
Icon.propTypes = { | |
className: PropTypes.string, | |
icon: PropTypes.any.isRequired, | |
height: PropTypes.number, | |
onClick: PropTypes.func, | |
}; |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment