UNPKG

@pinuts/bsr-uikit-relaunch

Version:

BSR UI-KIT Relaunch

53 lines (49 loc) 2.66 kB
import * as React from 'react'; import PropTypes from 'prop-types'; import Icon40PropValues from '../_defaultIconPropValues.ts'; const Idea = (props) => { const { width = Icon40PropValues.width, height = Icon40PropValues.height, fill = Icon40PropValues.fill, stroke = Icon40PropValues.stroke, ...restProps } = props; return ( <svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" width={width} height={height} {...restProps} fill="none" > <path fill={fill} stroke={stroke} strokeWidth={0.2} d="M14.22 18.975H9.78a.725.725 0 0 1-.715-.605l-.505-2.9a6.11 6.11 0 0 1-2.62-4.995c0-1.62.635-3.14 1.78-4.285A6.03 6.03 0 0 1 12 4.42h.005c1.62 0 3.14.635 4.285 1.78a6 6 0 0 1 1.77 4.29 6.09 6.09 0 0 1-2.62 4.985l-.505 2.9a.73.73 0 0 1-.715.605zm-3.83-1.455h3.22l.455-2.605a.73.73 0 0 1 .34-.495 4.63 4.63 0 0 0 2.205-3.93 4.58 4.58 0 0 0-1.345-3.26 4.57 4.57 0 0 0-3.255-1.35c-1.23 0-2.385.48-3.255 1.345a4.57 4.57 0 0 0-1.35 3.255c0 1.595.845 3.105 2.205 3.935.18.11.3.29.34.495l.455 2.605zM13.995 20.995h-3.99a.749.749 0 1 1 0-1.5h3.99a.749.749 0 1 1 0 1.5ZM13.465 22.98h-2.93a.73.73 0 0 1-.73-.73c0-.4.33-.73.73-.73h2.93c.405 0 .73.33.73.73s-.33.73-.73.73ZM20.785 11.265H19.32a.73.73 0 0 1-.73-.73c0-.4.33-.73.73-.73h1.465c.405 0 .73.33.73.73s-.33.73-.73.73ZM4.68 11.265H3.215a.73.73 0 0 1-.73-.73c0-.4.33-.73.73-.73H4.68c.405 0 .73.33.73.73s-.33.73-.73.73ZM17.18 5.95a.733.733 0 0 1-.52-1.25l1.035-1.035a.733.733 0 0 1 1.035 0 .733.733 0 0 1 0 1.035l-1.035 1.035a.73.73 0 0 1-.52.215z" /> <path fill={fill} stroke={stroke} strokeWidth={0.2} d="M5.785 17.345a.72.72 0 0 1-.515-.215.73.73 0 0 1 0-1.035l1.035-1.04a.733.733 0 0 1 1.035 0c.285.285.29.75 0 1.035l-1.035 1.04a.73.73 0 0 1-.52.215ZM18.215 17.345a.73.73 0 0 1-.52-.215l-1.035-1.04a.733.733 0 0 1 0-1.035.733.733 0 0 1 1.035 0l1.035 1.04a.733.733 0 0 1-.515 1.25ZM6.82 5.95a.74.74 0 0 1-.52-.215L5.265 4.7a.733.733 0 0 1 0-1.035.733.733 0 0 1 1.035 0L7.335 4.7a.733.733 0 0 1-.52 1.25zM12 3.94a.73.73 0 0 1-.73-.73V1.745c0-.405.33-.73.73-.73s.73.33.73.73V3.21a.73.73 0 0 1-.73.73Z" /> </svg> ); }; Idea.propTypes = { width: PropTypes.string, height: PropTypes.string, fill: PropTypes.string, stroke: PropTypes.string, }; export default Idea;