doly-icons
Version:
React icon component based on Bootstrap Icons
7 lines (6 loc) • 679 B
JavaScript
import { __assign } from "tslib";
import React from 'react';
import IconBase from '../icon/IconBase';
var Search = function (props) { return (React.createElement(IconBase, __assign({ "aria-label": "search" }, props, { renderChild: function (childProps) { return (React.createElement("svg", __assign({ xmlns: "http://www.w3.org/2000/svg", width: "1em", height: "1em", fill: "currentColor", viewBox: "0 0 16 16" }, childProps),
React.createElement("path", { d: "M11.742 10.344a6.5 6.5 0 1 0-1.397 1.398h-.001q.044.06.098.115l3.85 3.85a1 1 0 0 0 1.415-1.414l-3.85-3.85a1 1 0 0 0-.115-.1zM12 6.5a5.5 5.5 0 1 1-11 0 5.5 5.5 0 0 1 11 0" }))); } }))); };
export default Search;