UNPKG

react-feather

Version:
36 lines (31 loc) 818 B
import React from 'react'; import PropTypes from 'prop-types'; const CameraOff = props => { const { color, size, ...otherProps } = props; return ( <svg xmlns="http://www.w3.org/2000/svg" width={size} height={size} viewBox="0 0 24 24" fill="none" stroke={color} strokeWidth="2" strokeLinecap="round" strokeLinejoin="round" {...otherProps} > <line x1="1" y1="1" x2="23" y2="23" /> <path d="M21 21H3a2 2 0 0 1-2-2V8a2 2 0 0 1 2-2h3m3-3h6l2 3h4a2 2 0 0 1 2 2v9.34m-7.72-2.06a4 4 0 1 1-5.56-5.56" /> </svg> ); }; CameraOff.propTypes = { color: PropTypes.string, size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]), }; CameraOff.defaultProps = { color: 'currentColor', size: '24', }; export default CameraOff;