react-feather
Version:
React component for Feather icons
82 lines (77 loc) • 1.6 kB
JavaScript
import React from 'react';
import PropTypes from 'prop-types';
const Scissors = 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}
>
<circle
cx="6"
cy="6"
r="3"
fill="none"
stroke={color}
strokeLinecap="round"
strokeLinejoin="round"
strokeWidth="2"
/>
<circle
cx="6"
cy="18"
r="3"
fill="none"
stroke="currentColor"
strokeLinecap="round"
strokeLinejoin="round"
strokeWidth="2"
/>
<line
x1="20"
y1="4"
x2="8.12"
y2="15.88"
fill="none"
stroke="currentColor"
strokeLinecap="round"
strokeLinejoin="round"
strokeWidth="2"
/>
<line
x1="14.47"
y1="14.48"
x2="20"
y2="20"
fill="none"
stroke="currentColor"
strokeLinecap="round"
strokeLinejoin="round"
strokeWidth="2"
/>
<line
x1="8.12"
y1="8.12"
x2="12"
y2="12"
fill="none"
stroke="currentColor"
strokeLinecap="round"
strokeLinejoin="round"
strokeWidth="2"
/>
</svg>
);
};
Scissors.propTypes = {
color: PropTypes.string,
size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]),
};
Scissors.defaultProps = {
color: 'currentColor',
size: '24',
};
export default Scissors;