doly-icons
Version:
React icon component based on Bootstrap Icons
8 lines (7 loc) • 793 B
JavaScript
import { __assign } from "tslib";
import React from 'react';
import IconBase from '../icon/IconBase';
var CircleSquare = function (props) { return (React.createElement(IconBase, __assign({ "aria-label": "circle-square" }, 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: "M0 6a6 6 0 1 1 12 0A6 6 0 0 1 0 6" }),
React.createElement("path", { d: "M12.93 5h1.57a.5.5 0 0 1 .5.5v9a.5.5 0 0 1-.5.5h-9a.5.5 0 0 1-.5-.5v-1.57a7 7 0 0 1-1-.22v1.79A1.5 1.5 0 0 0 5.5 16h9a1.5 1.5 0 0 0 1.5-1.5v-9A1.5 1.5 0 0 0 14.5 4h-1.79q.145.486.22 1" }))); } }))); };
export default CircleSquare;