@lobehub/ui
Version:
Lobe UI is an open-source UI component library for building AIGC web apps
41 lines (38 loc) • 2.23 kB
JavaScript
'use client';
import { TITLE } from "../style.mjs";
import { memo } from "react";
import { jsx, jsxs } from "react/jsx-runtime";
//#region src/icons/Lark/components/Color.tsx
const Icon = memo(({ size = "1em", style, ...rest }) => {
return /* @__PURE__ */ jsxs("svg", {
height: size,
style: {
flex: "none",
lineHeight: 1,
...style
},
viewBox: "0 0 24 24",
width: size,
xmlns: "http://www.w3.org/2000/svg",
...rest,
children: [
/* @__PURE__ */ jsx("title", { children: TITLE }),
/* @__PURE__ */ jsx("path", {
d: "M18.141 7.833a8.387 8.387 0 00-2.749 1.54c-.145.122-.595.554-1.348 1.297-.444.437-.89.874-1.335 1.309a.32.32 0 01-.074.052 58.403 58.403 0 00-.977-1.63 30.364 30.364 0 00-7.474-7.995c-.104-.078-.223-.2-.13-.324A.195.195 0 014.22 2c2.782.004 6.215.005 10.297.003.564 0 .868.298 1.224.765a13.923 13.923 0 012.374 4.87c.014.05.023.116.027.195z",
fill: "#01D6BA"
}),
/* @__PURE__ */ jsx("path", {
d: "M20.429 14.612a2.4 2.4 0 00-.645.52.468.468 0 01-.064.062c-1.08.82-2.29 1.213-3.63 1.179-.58-.015-1.266-.142-2.061-.381a32.717 32.717 0 01-3.962-1.468 7.646 7.646 0 00-.27-.115 2.494 2.494 0 01-.264-.124 14.329 14.329 0 003.024-2.158.373.373 0 00.078-.096.32.32 0 00.074-.052c.446-.435.891-.872 1.335-1.31.753-.742 1.203-1.174 1.348-1.296a8.387 8.387 0 012.75-1.54c.284-.085.518-.146.701-.186 1.842-.397 3.611-.193 5.31.611l.014.011a.038.038 0 01.006.035.038.038 0 01-.01.015 7.74 7.74 0 00-1.405 1.918c-.028.054-.543 1.08-1.544 3.078a10.16 10.16 0 01-.785 1.297z",
fill: "#153C9B"
}),
/* @__PURE__ */ jsx("path", {
d: "M9.533 14.285c.087.047.175.089.264.124.098.04.188.078.27.115a32.71 32.71 0 003.962 1.468c.795.239 1.482.366 2.06.38 1.34.035 2.551-.358 3.631-1.178a.467.467 0 00.064-.062 2.4 2.4 0 01.645-.52 6.841 6.841 0 01-.61.92c-1.227 1.575-2.69 2.856-4.424 3.812a14.181 14.181 0 01-13.704-.025c-.364-.202-.82-.452-1.142-.747-.315-.29-.367-.663-.366-1.122L.175 8.081c0-.104.005-.201.015-.29a.162.162 0 01.161-.143c.059 0 .117.03.174.091 2.595 2.735 5.561 4.905 8.899 6.51.039.018.075.03.109.036z",
fill: "#3370FF"
})
]
});
});
var Color_default = Icon;
//#endregion
export { Color_default as default };
//# sourceMappingURL=Color.mjs.map