Some checks failed
Build & Deploy / 🔍 Prepare (push) Successful in 20s
Build & Deploy / 🧪 QA (push) Failing after 34s
Build & Deploy / 🏗️ Build (push) Has started running
Build & Deploy / 🚀 Deploy (push) Has been cancelled
Build & Deploy / 🧪 Smoke Test (push) Has been cancelled
Build & Deploy / ⚡ Lighthouse (push) Has been cancelled
Build & Deploy / 🔔 Notify (push) Has been cancelled
26 lines
887 B
Plaintext
26 lines
887 B
Plaintext
import { jsx as _jsx, jsxs as _jsxs } from "react/jsx-runtime";
|
|
import React from 'react';
|
|
import './index.scss';
|
|
const baseClass = 'graphic-account';
|
|
export const DefaultAccountIcon = props => /*#__PURE__*/_jsxs("svg", {
|
|
className: [baseClass, props?.active && `${baseClass}--active`].filter(Boolean).join(' '),
|
|
height: "25",
|
|
viewBox: "0 0 25 25",
|
|
width: "25",
|
|
xmlns: "http://www.w3.org/2000/svg",
|
|
children: [/*#__PURE__*/_jsx("circle", {
|
|
className: `${baseClass}__bg`,
|
|
cx: "12.5",
|
|
cy: "12.5",
|
|
r: "11.5"
|
|
}), /*#__PURE__*/_jsx("circle", {
|
|
className: `${baseClass}__head`,
|
|
cx: "12.5",
|
|
cy: "10.73",
|
|
r: "3.98"
|
|
}), /*#__PURE__*/_jsx("path", {
|
|
className: `${baseClass}__body`,
|
|
d: "M12.5,24a11.44,11.44,0,0,0,7.66-2.94c-.5-2.71-3.73-4.8-7.66-4.8s-7.16,2.09-7.66,4.8A11.44,11.44,0,0,0,12.5,24Z"
|
|
})]
|
|
});
|
|
//# sourceMappingURL=index.js.map |