Created
August 29, 2018 02:00
-
-
Save niceaji/8ec7ef315e6354640590970bb895c1c9 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 React from 'react'; | |
import PropTypes from 'prop-types'; | |
const ArrowhSvg = ({ size, className }) => ( | |
<svg | |
width={size} | |
height={size} | |
viewBox="0 0 1792 1792" | |
xmlns="http://www.w3.org/2000/svg" | |
aria-hidden="true" | |
className={`ico fill ${className}`} | |
> | |
<path d="M1792 896q0 26-19 45l-256 256q-19 19-45 19t-45-19-19-45v-128h-1024v128q0 26-19 45t-45 19-45-19l-256-256q-19-19-19-45t19-45l256-256q19-19 45-19t45 19 19 45v128h1024v-128q0-26 19-45t45-19 45 19l256 256q19 19 19 45z" /> | |
</svg> | |
); | |
ArrowhSvg.propTypes = { | |
size: PropTypes.string, | |
className: PropTypes.string, | |
}; | |
ArrowhSvg.defaultProps = { | |
size: '16', | |
className: '', | |
}; | |
export default ArrowhSvg; |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment