doly-icons
Version:
React icon component based on Bootstrap Icons
8 lines (7 loc) • 778 B
JavaScript
import { __assign } from "tslib";
import React from 'react';
import IconBase from '../icon/IconBase';
var Check2Circle = function (props) { return (React.createElement(IconBase, __assign({ "aria-label": "check2-circle" }, 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: "M2.5 8a5.5 5.5 0 0 1 8.25-4.764.5.5 0 0 0 .5-.866A6.5 6.5 0 1 0 14.5 8a.5.5 0 0 0-1 0 5.5 5.5 0 1 1-11 0" }),
React.createElement("path", { d: "M15.354 3.354a.5.5 0 0 0-.708-.708L8 9.293 5.354 6.646a.5.5 0 1 0-.708.708l3 3a.5.5 0 0 0 .708 0z" }))); } }))); };
export default Check2Circle;