@styled-icons/fluentui-system-filled
Version:
FluentUI System (filled) icons available as Styled Components
25 lines • 1.19 kB
JavaScript
import _extends from "@babel/runtime/helpers/extends";
import * as React from 'react';
import { StyledIconBase } from '@styled-icons/styled-icon';
export var SearchVisual = /*#__PURE__*/React.forwardRef(function (props, ref) {
var attrs = {
"fill": "currentColor",
"xmlns": "http://www.w3.org/2000/svg"
};
return /*#__PURE__*/React.createElement(StyledIconBase, _extends({
iconAttrs: attrs,
iconVerticalAlign: "middle",
iconViewBox: "0 0 24 24"
}, props, {
ref: ref
}), /*#__PURE__*/React.createElement("path", {
d: "M3 6.5A3.5 3.5 0 0 1 6.5 3H9a1 1 0 0 1 0 2H6.5C5.67 5 5 5.67 5 6.5V9a1 1 0 1 1-2 0V6.5zM21 17.5a3.5 3.5 0 0 1-3.5 3.5H15a1 1 0 1 1 0-2h2.5c.83 0 1.5-.67 1.5-1.5V15a1 1 0 1 1 2 0v2.5zM21 6.5A3.5 3.5 0 0 0 17.5 3H15a1 1 0 1 0 0 2h2.5c.83 0 1.5.67 1.5 1.5V9a1 1 0 1 0 2 0V6.5zM6.5 21A3.5 3.5 0 0 1 3 17.5V15a1 1 0 1 1 2 0v2.5c0 .83.67 1.5 1.5 1.5H9a1 1 0 1 1 0 2H6.5zM12 15a3 3 0 1 0 0-6 3 3 0 0 0 0 6z"
}), /*#__PURE__*/React.createElement("path", {
d: "M7.5 8.75a1.25 1.25 0 1 0 0-2.5 1.25 1.25 0 0 0 0 2.5z"
}));
});
SearchVisual.displayName = 'SearchVisual';
export var SearchVisualDimensions = {
height: 24,
width: 24
};