react-feather
Version:
React component for Feather icons
75 lines (70 loc) • 1.58 kB
JavaScript
import React from 'react';
import PropTypes from 'prop-types';
const Codepen = props => {
const { color, size, ...otherProps } = props;
return (
<svg
xmlns="http://www.w3.org/2000/svg"
width={size}
height={size}
viewBox="0 0 24 24"
{...otherProps}
>
<polygon
points="12 2 22 8.5 22 15.5 12 22 2 15.5 2 8.5 12 2"
fill="none"
stroke={color}
strokeLinecap="round"
strokeLinejoin="round"
strokeWidth="2"
/>
<line
x1="12"
y1="22"
x2="12"
y2="15.5"
fill="none"
stroke="currentColor"
strokeLinecap="round"
strokeLinejoin="round"
strokeWidth="2"
/>
<polyline
points="22 8.5 12 15.5 2 8.5"
fill="none"
stroke="currentColor"
strokeLinecap="round"
strokeLinejoin="round"
strokeWidth="2"
/>
<polyline
points="2 15.5 12 8.5 22 15.5"
fill="none"
stroke="currentColor"
strokeLinecap="round"
strokeLinejoin="round"
strokeWidth="2"
/>
<line
x1="12"
y1="2"
x2="12"
y2="8.5"
fill="none"
stroke="currentColor"
strokeLinecap="round"
strokeLinejoin="round"
strokeWidth="2"
/>
</svg>
);
};
Codepen.propTypes = {
color: PropTypes.string,
size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]),
};
Codepen.defaultProps = {
color: 'currentColor',
size: '24',
};
export default Codepen;