@central-icons-qwik/square-filled-radius-0-stroke-2 1.1.291 → 1.1.293
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/IconAgents/index.mjs +2 -2
- package/IconAgents/index.mjs.map +3 -3
- package/IconBase44/index.d.ts +3 -0
- package/IconBase44/index.mjs +3 -0
- package/IconBase44/index.mjs.map +11 -0
- package/IconBookHeart/index.d.ts +3 -0
- package/IconBookHeart/index.mjs +3 -0
- package/IconBookHeart/index.mjs.map +11 -0
- package/IconEmail2Block/index.d.ts +3 -0
- package/IconEmail2Block/index.mjs +3 -0
- package/IconEmail2Block/index.mjs.map +11 -0
- package/IconEmail2Check/index.d.ts +3 -0
- package/IconEmail2Check/index.mjs +3 -0
- package/IconEmail2Check/index.mjs.map +11 -0
- package/IconEmail2Incoming/index.d.ts +3 -0
- package/IconEmail2Incoming/index.mjs +3 -0
- package/IconEmail2Incoming/index.mjs.map +11 -0
- package/IconEmail2Plus/index.d.ts +3 -0
- package/IconEmail2Plus/index.mjs +3 -0
- package/IconEmail2Plus/index.mjs.map +11 -0
- package/IconEmail2Remove/index.d.ts +3 -0
- package/IconEmail2Remove/index.mjs +3 -0
- package/IconEmail2Remove/index.mjs.map +11 -0
- package/IconEmail2Unread/index.d.ts +3 -0
- package/IconEmail2Unread/index.mjs +3 -0
- package/IconEmail2Unread/index.mjs.map +11 -0
- package/IconTodoist/index.d.ts +3 -0
- package/IconTodoist/index.mjs +3 -0
- package/IconTodoist/index.mjs.map +11 -0
- package/README.md +39 -0
- package/icons/index.d.ts +1 -1
- package/icons/index.mjs +2 -2
- package/icons/index.mjs.map +3 -3
- package/icons-index.json +4 -4
- package/index.d.ts +9 -0
- package/index.mjs +9 -0
- package/license-check.js +1 -1
- package/package.json +1 -1
- package/skills/central-icons-qwik/SKILL.md +20 -2
package/IconAgents/index.mjs
CHANGED
|
@@ -1,3 +1,3 @@
|
|
|
1
|
-
function a(e){let{size:n=24,color:t,ariaHidden:r=!0,ariaLabel:l,style:
|
|
1
|
+
function a(e){let{size:n=24,color:t,ariaHidden:r=!0,ariaLabel:l,style:o,...s}=e,i=typeof n==="number"?`${n}px`:n;return{...s,width:i,height:i,viewBox:"0 0 24 24",fill:"none",xmlns:"http://www.w3.org/2000/svg",role:r?void 0:"img","aria-hidden":r,"aria-label":r?void 0:l,style:t?{color:t,...o}:o}}import{jsx as d}from"@builder.io/qwik/jsx-runtime";var C=(e)=>d("svg",{...a({...e,ariaLabel:"agents, connections, flow, roadmap"}),dangerouslySetInnerHTML:'<path d="M6 2C7.30585 2 8.41406 2.83532 8.82617 4H16.5C18.9853 4 21 6.01472 21 8.5C21 10.9853 18.9853 13 16.5 13H15.4141L12 16.4141L8.58594 13H7.5C6.11929 13 5 14.1193 5 15.5C5 16.8807 6.11929 18 7.5 18H15.1738C15.5859 16.8353 16.6941 16 18 16C19.6569 16 21 17.3431 21 19C21 20.6569 19.6569 22 18 22C16.6941 22 15.5859 21.1647 15.1738 20H7.5C5.01472 20 3 17.9853 3 15.5C3 13.0147 5.01472 11 7.5 11H8.58594L12 7.58594L15.4141 11H16.5C17.8807 11 19 9.88071 19 8.5C19 7.11929 17.8807 6 16.5 6H8.82617C8.41406 7.16468 7.30585 8 6 8C4.34315 8 3 6.65685 3 5C3 3.34315 4.34315 2 6 2Z" fill="currentColor"/>'}),m=C;export{m as default,C as IconAgents};
|
|
2
2
|
|
|
3
|
-
//# debugId=
|
|
3
|
+
//# debugId=FE444627DAF9A82264756E2164756E21
|
package/IconAgents/index.mjs.map
CHANGED
|
@@ -3,9 +3,9 @@
|
|
|
3
3
|
"sources": ["src/CentralIconBase/index.tsx", "src/IconAgents/index.tsx"],
|
|
4
4
|
"sourcesContent": [
|
|
5
5
|
"import type { QwikIntrinsicElements } from \"@builder.io/qwik\";\n\nexport type CentralIconProps = {\n size?: string | number;\n color?: string;\n ariaHidden?: boolean;\n ariaLabel?: string;\n} & Omit<QwikIntrinsicElements[\"svg\"], \"width\" | \"height\" | \"viewBox\" | \"fill\" | \"xmlns\" | \"role\" | \"aria-hidden\" | \"aria-label\">;\n\nexport function svgAttrs(props: CentralIconProps): Record<string, unknown> {\n const { size = 24, color, ariaHidden = true, ariaLabel, style, ...rest } = props;\n const dim = typeof size === \"number\" ? `${size}px` : size;\n return {\n ...rest,\n width: dim,\n height: dim,\n viewBox: \"0 0 24 24\",\n fill: \"none\",\n xmlns: \"http://www.w3.org/2000/svg\",\n role: ariaHidden ? undefined : \"img\",\n \"aria-hidden\": ariaHidden,\n \"aria-label\": ariaHidden ? undefined : ariaLabel,\n style: color ? { color, ...style } : style,\n };\n}\n",
|
|
6
|
-
"import { svgAttrs, type CentralIconProps } from \"../CentralIconBase\";\n\nexport const IconAgents = (props: CentralIconProps) => (\n <svg {...svgAttrs({ ...props, ariaLabel: \"agents, connections, flow\" })} dangerouslySetInnerHTML={\"<path d=\\\"M6 2C7.30585 2 8.41406 2.83532 8.82617 4H16.5C18.9853 4 21 6.01472 21 8.5C21 10.9853 18.9853 13 16.5 13H15.4141L12 16.4141L8.58594 13H7.5C6.11929 13 5 14.1193 5 15.5C5 16.8807 6.11929 18 7.5 18H15.1738C15.5859 16.8353 16.6941 16 18 16C19.6569 16 21 17.3431 21 19C21 20.6569 19.6569 22 18 22C16.6941 22 15.5859 21.1647 15.1738 20H7.5C5.01472 20 3 17.9853 3 15.5C3 13.0147 5.01472 11 7.5 11H8.58594L12 7.58594L15.4141 11H16.5C17.8807 11 19 9.88071 19 8.5C19 7.11929 17.8807 6 16.5 6H8.82617C8.41406 7.16468 7.30585 8 6 8C4.34315 8 3 6.65685 3 5C3 3.34315 4.34315 2 6 2Z\\\" fill=\\\"currentColor\\\"/>\"} />\n);\n\nexport default IconAgents;\n"
|
|
6
|
+
"import { svgAttrs, type CentralIconProps } from \"../CentralIconBase\";\n\nexport const IconAgents = (props: CentralIconProps) => (\n <svg {...svgAttrs({ ...props, ariaLabel: \"agents, connections, flow, roadmap\" })} dangerouslySetInnerHTML={\"<path d=\\\"M6 2C7.30585 2 8.41406 2.83532 8.82617 4H16.5C18.9853 4 21 6.01472 21 8.5C21 10.9853 18.9853 13 16.5 13H15.4141L12 16.4141L8.58594 13H7.5C6.11929 13 5 14.1193 5 15.5C5 16.8807 6.11929 18 7.5 18H15.1738C15.5859 16.8353 16.6941 16 18 16C19.6569 16 21 17.3431 21 19C21 20.6569 19.6569 22 18 22C16.6941 22 15.5859 21.1647 15.1738 20H7.5C5.01472 20 3 17.9853 3 15.5C3 13.0147 5.01472 11 7.5 11H8.58594L12 7.58594L15.4141 11H16.5C17.8807 11 19 9.88071 19 8.5C19 7.11929 17.8807 6 16.5 6H8.82617C8.41406 7.16468 7.30585 8 6 8C4.34315 8 3 6.65685 3 5C3 3.34315 4.34315 2 6 2Z\\\" fill=\\\"currentColor\\\"/>\"} />\n);\n\nexport default IconAgents;\n"
|
|
7
7
|
],
|
|
8
|
-
"mappings": "AASO,SAAS,CAAQ,CAAC,EAAkD,CACzE,IAAQ,OAAO,GAAI,QAAO,aAAa,GAAM,YAAW,WAAU,GAAS,EACrE,EAAM,OAAO,IAAS,SAAW,GAAG,MAAW,EACrD,MAAO,IACF,EACH,MAAO,EACP,OAAQ,EACR,QAAS,YACT,KAAM,OACN,MAAO,6BACP,KAAM,EAAa,OAAY,MAC/B,cAAe,EACf,aAAc,EAAa,OAAY,EACvC,MAAO,EAAQ,CAAE,WAAU,CAAM,EAAI,CACvC,qDCrBK,IAAM,EAAa,CAAC,IACzB,EAAC,MAAD,IAAS,EAAS,IAAK,EAAO,UAAW,
|
|
9
|
-
"debugId": "
|
|
8
|
+
"mappings": "AASO,SAAS,CAAQ,CAAC,EAAkD,CACzE,IAAQ,OAAO,GAAI,QAAO,aAAa,GAAM,YAAW,WAAU,GAAS,EACrE,EAAM,OAAO,IAAS,SAAW,GAAG,MAAW,EACrD,MAAO,IACF,EACH,MAAO,EACP,OAAQ,EACR,QAAS,YACT,KAAM,OACN,MAAO,6BACP,KAAM,EAAa,OAAY,MAC/B,cAAe,EACf,aAAc,EAAa,OAAY,EACvC,MAAO,EAAQ,CAAE,WAAU,CAAM,EAAI,CACvC,qDCrBK,IAAM,EAAa,CAAC,IACzB,EAAC,MAAD,IAAS,EAAS,IAAK,EAAO,UAAW,oCAAqC,CAAC,EAAG,wBAAyB,0lBAA+lB,EAG7rB",
|
|
9
|
+
"debugId": "FE444627DAF9A82264756E2164756E21",
|
|
10
10
|
"names": []
|
|
11
11
|
}
|
|
@@ -0,0 +1,3 @@
|
|
|
1
|
+
function a(e){let{size:r=24,color:t,ariaHidden:n=!0,ariaLabel:l,style:i,...s}=e,o=typeof r==="number"?`${r}px`:r;return{...s,width:o,height:o,viewBox:"0 0 24 24",fill:"none",xmlns:"http://www.w3.org/2000/svg",role:n?void 0:"img","aria-hidden":n,"aria-label":n?void 0:l,style:t?{color:t,...i}:i}}import{jsx as C}from"@builder.io/qwik/jsx-runtime";var d=(e)=>C("svg",{...a({...e,ariaLabel:"base44"}),dangerouslySetInnerHTML:'<path d="M19.2431 16.9999C19.3549 16.9999 19.4621 17.0439 19.5411 17.122L20.0377 17.6125C20.1543 17.7277 20.17 17.9099 20.0703 18.0398C18.2221 20.4459 15.2964 22 12.0034 22C8.70635 22 5.77761 20.4421 3.92975 18.0309C3.83021 17.9009 3.8458 17.719 3.9624 17.6038L4.45024 17.1218C4.52932 17.0437 4.63666 16.9999 4.74848 16.9999H19.2431Z" fill="currentColor"/><path d="M12.0036 2C17.5932 2 22.1247 6.47715 22.1247 12C22.1247 12.3624 22.1048 12.7202 22.0668 13.0726C22.0548 13.1833 22.0037 13.2861 21.924 13.3649L20.9235 14.3534C20.8286 14.4472 20.6998 14.4999 20.5656 14.4999H3.4419C3.30769 14.4999 3.17893 14.4472 3.08402 14.3534L2.0833 13.3649C2.00361 13.2861 1.95246 13.1833 1.9405 13.0726C1.90244 12.7202 1.88281 12.3624 1.88281 12C1.88282 6.47718 6.41405 2.00004 12.0036 2Z" fill="currentColor"/>'}),m=d;export{m as default,d as IconBase44};
|
|
2
|
+
|
|
3
|
+
//# debugId=82CB70809E4C966764756E2164756E21
|
|
@@ -0,0 +1,11 @@
|
|
|
1
|
+
{
|
|
2
|
+
"version": 3,
|
|
3
|
+
"sources": ["src/CentralIconBase/index.tsx", "src/IconBase44/index.tsx"],
|
|
4
|
+
"sourcesContent": [
|
|
5
|
+
"import type { QwikIntrinsicElements } from \"@builder.io/qwik\";\n\nexport type CentralIconProps = {\n size?: string | number;\n color?: string;\n ariaHidden?: boolean;\n ariaLabel?: string;\n} & Omit<QwikIntrinsicElements[\"svg\"], \"width\" | \"height\" | \"viewBox\" | \"fill\" | \"xmlns\" | \"role\" | \"aria-hidden\" | \"aria-label\">;\n\nexport function svgAttrs(props: CentralIconProps): Record<string, unknown> {\n const { size = 24, color, ariaHidden = true, ariaLabel, style, ...rest } = props;\n const dim = typeof size === \"number\" ? `${size}px` : size;\n return {\n ...rest,\n width: dim,\n height: dim,\n viewBox: \"0 0 24 24\",\n fill: \"none\",\n xmlns: \"http://www.w3.org/2000/svg\",\n role: ariaHidden ? undefined : \"img\",\n \"aria-hidden\": ariaHidden,\n \"aria-label\": ariaHidden ? undefined : ariaLabel,\n style: color ? { color, ...style } : style,\n };\n}\n",
|
|
6
|
+
"import { svgAttrs, type CentralIconProps } from \"../CentralIconBase\";\n\nexport const IconBase44 = (props: CentralIconProps) => (\n <svg {...svgAttrs({ ...props, ariaLabel: \"base44\" })} dangerouslySetInnerHTML={\"<path d=\\\"M19.2431 16.9999C19.3549 16.9999 19.4621 17.0439 19.5411 17.122L20.0377 17.6125C20.1543 17.7277 20.17 17.9099 20.0703 18.0398C18.2221 20.4459 15.2964 22 12.0034 22C8.70635 22 5.77761 20.4421 3.92975 18.0309C3.83021 17.9009 3.8458 17.719 3.9624 17.6038L4.45024 17.1218C4.52932 17.0437 4.63666 16.9999 4.74848 16.9999H19.2431Z\\\" fill=\\\"currentColor\\\"/><path d=\\\"M12.0036 2C17.5932 2 22.1247 6.47715 22.1247 12C22.1247 12.3624 22.1048 12.7202 22.0668 13.0726C22.0548 13.1833 22.0037 13.2861 21.924 13.3649L20.9235 14.3534C20.8286 14.4472 20.6998 14.4999 20.5656 14.4999H3.4419C3.30769 14.4999 3.17893 14.4472 3.08402 14.3534L2.0833 13.3649C2.00361 13.2861 1.95246 13.1833 1.9405 13.0726C1.90244 12.7202 1.88281 12.3624 1.88281 12C1.88282 6.47718 6.41405 2.00004 12.0036 2Z\\\" fill=\\\"currentColor\\\"/>\"} />\n);\n\nexport default IconBase44;\n"
|
|
7
|
+
],
|
|
8
|
+
"mappings": "AASO,SAAS,CAAQ,CAAC,EAAkD,CACzE,IAAQ,OAAO,GAAI,QAAO,aAAa,GAAM,YAAW,WAAU,GAAS,EACrE,EAAM,OAAO,IAAS,SAAW,GAAG,MAAW,EACrD,MAAO,IACF,EACH,MAAO,EACP,OAAQ,EACR,QAAS,YACT,KAAM,OACN,MAAO,6BACP,KAAM,EAAa,OAAY,MAC/B,cAAe,EACf,aAAc,EAAa,OAAY,EACvC,MAAO,EAAQ,CAAE,WAAU,CAAM,EAAI,CACvC,qDCrBK,IAAM,EAAa,CAAC,IACzB,EAAC,MAAD,IAAS,EAAS,IAAK,EAAO,UAAW,QAAS,CAAC,EAAG,wBAAyB,gyBAAyyB,EAG32B",
|
|
9
|
+
"debugId": "82CB70809E4C966764756E2164756E21",
|
|
10
|
+
"names": []
|
|
11
|
+
}
|
|
@@ -0,0 +1,3 @@
|
|
|
1
|
+
function l(e){let{size:r=24,color:t,ariaHidden:n=!0,ariaLabel:a,style:i,...s}=e,o=typeof r==="number"?`${r}px`:r;return{...s,width:o,height:o,viewBox:"0 0 24 24",fill:"none",xmlns:"http://www.w3.org/2000/svg",role:n?void 0:"img","aria-hidden":n,"aria-label":n?void 0:a,style:t?{color:t,...i}:i}}import{jsx as p}from"@builder.io/qwik/jsx-runtime";var d=(e)=>p("svg",{...l({...e,ariaLabel:"book-heart, daily, diary"}),dangerouslySetInnerHTML:'<path fill-rule="evenodd" clip-rule="evenodd" d="M20 22H7C5.34315 22 4 20.6569 4 19V5C4 3.34315 5.34315 2 7 2H20V22ZM7 18C6.44772 18 6 18.4477 6 19C6 19.5523 6.44772 20 7 20H18V18H7ZM15.251 9.66797C15.2508 7.92017 13.5026 6.87862 11.999 7.84961C10.4956 6.87912 8.74827 7.92034 8.74805 9.66797C8.74836 11.9856 11.9588 13.2644 11.999 13.2803C12.021 13.2716 15.2507 11.9923 15.251 9.66797Z" fill="currentColor"/>'}),m=d;export{m as default,d as IconBookHeart};
|
|
2
|
+
|
|
3
|
+
//# debugId=06709131BB0472F964756E2164756E21
|
|
@@ -0,0 +1,11 @@
|
|
|
1
|
+
{
|
|
2
|
+
"version": 3,
|
|
3
|
+
"sources": ["src/CentralIconBase/index.tsx", "src/IconBookHeart/index.tsx"],
|
|
4
|
+
"sourcesContent": [
|
|
5
|
+
"import type { QwikIntrinsicElements } from \"@builder.io/qwik\";\n\nexport type CentralIconProps = {\n size?: string | number;\n color?: string;\n ariaHidden?: boolean;\n ariaLabel?: string;\n} & Omit<QwikIntrinsicElements[\"svg\"], \"width\" | \"height\" | \"viewBox\" | \"fill\" | \"xmlns\" | \"role\" | \"aria-hidden\" | \"aria-label\">;\n\nexport function svgAttrs(props: CentralIconProps): Record<string, unknown> {\n const { size = 24, color, ariaHidden = true, ariaLabel, style, ...rest } = props;\n const dim = typeof size === \"number\" ? `${size}px` : size;\n return {\n ...rest,\n width: dim,\n height: dim,\n viewBox: \"0 0 24 24\",\n fill: \"none\",\n xmlns: \"http://www.w3.org/2000/svg\",\n role: ariaHidden ? undefined : \"img\",\n \"aria-hidden\": ariaHidden,\n \"aria-label\": ariaHidden ? undefined : ariaLabel,\n style: color ? { color, ...style } : style,\n };\n}\n",
|
|
6
|
+
"import { svgAttrs, type CentralIconProps } from \"../CentralIconBase\";\n\nexport const IconBookHeart = (props: CentralIconProps) => (\n <svg {...svgAttrs({ ...props, ariaLabel: \"book-heart, daily, diary\" })} dangerouslySetInnerHTML={\"<path fill-rule=\\\"evenodd\\\" clip-rule=\\\"evenodd\\\" d=\\\"M20 22H7C5.34315 22 4 20.6569 4 19V5C4 3.34315 5.34315 2 7 2H20V22ZM7 18C6.44772 18 6 18.4477 6 19C6 19.5523 6.44772 20 7 20H18V18H7ZM15.251 9.66797C15.2508 7.92017 13.5026 6.87862 11.999 7.84961C10.4956 6.87912 8.74827 7.92034 8.74805 9.66797C8.74836 11.9856 11.9588 13.2644 11.999 13.2803C12.021 13.2716 15.2507 11.9923 15.251 9.66797Z\\\" fill=\\\"currentColor\\\"/>\"} />\n);\n\nexport default IconBookHeart;\n"
|
|
7
|
+
],
|
|
8
|
+
"mappings": "AASO,SAAS,CAAQ,CAAC,EAAkD,CACzE,IAAQ,OAAO,GAAI,QAAO,aAAa,GAAM,YAAW,WAAU,GAAS,EACrE,EAAM,OAAO,IAAS,SAAW,GAAG,MAAW,EACrD,MAAO,IACF,EACH,MAAO,EACP,OAAQ,EACR,QAAS,YACT,KAAM,OACN,MAAO,6BACP,KAAM,EAAa,OAAY,MAC/B,cAAe,EACf,aAAc,EAAa,OAAY,EACvC,MAAO,EAAQ,CAAE,WAAU,CAAM,EAAI,CACvC,qDCrBK,IAAM,EAAgB,CAAC,IAC5B,EAAC,MAAD,IAAS,EAAS,IAAK,EAAO,UAAW,0BAA2B,CAAC,EAAG,wBAAyB,4ZAAqa,EAGzf",
|
|
9
|
+
"debugId": "06709131BB0472F964756E2164756E21",
|
|
10
|
+
"names": []
|
|
11
|
+
}
|
|
@@ -0,0 +1,3 @@
|
|
|
1
|
+
function t(e){let{size:r=24,color:i,ariaHidden:n=!0,ariaLabel:a,style:l,...d}=e,o=typeof r==="number"?`${r}px`:r;return{...d,width:o,height:o,viewBox:"0 0 24 24",fill:"none",xmlns:"http://www.w3.org/2000/svg",role:n?void 0:"img","aria-hidden":n,"aria-label":n?void 0:a,style:i?{color:i,...l}:l}}import{jsx as c}from"@builder.io/qwik/jsx-runtime";var s=(e)=>c("svg",{...t({...e,ariaLabel:"email-2-block"}),dangerouslySetInnerHTML:'<path fill-rule="evenodd" clip-rule="evenodd" d="M22 9.11816L12 14.1182L4 10.1172V18H12V20H2V4H22V9.11816Z" fill="currentColor"/><path fill-rule="evenodd" clip-rule="evenodd" d="M15.7419 14.2424C17.2649 12.7193 19.7345 12.7193 21.2575 14.2424C22.7806 15.7654 22.7806 18.235 21.2575 19.758C19.7345 21.2811 17.2649 21.2811 15.7419 19.758C14.2188 18.235 14.2188 15.7654 15.7419 14.2424ZM17.7956 18.9758C18.5355 19.2389 19.3928 19.0778 19.9851 18.4855C20.5773 17.8933 20.7384 17.036 20.4753 16.2961L17.7956 18.9758ZM19.2028 15.0236C18.4632 14.7611 17.6063 14.9229 17.0144 15.5148C16.4224 16.1068 16.2606 16.9637 16.5231 17.7033L19.2028 15.0236Z" fill="currentColor"/>'}),m=s;export{m as default,s as IconEmail2Block};
|
|
2
|
+
|
|
3
|
+
//# debugId=D099463FA949FACC64756E2164756E21
|
|
@@ -0,0 +1,11 @@
|
|
|
1
|
+
{
|
|
2
|
+
"version": 3,
|
|
3
|
+
"sources": ["src/CentralIconBase/index.tsx", "src/IconEmail2Block/index.tsx"],
|
|
4
|
+
"sourcesContent": [
|
|
5
|
+
"import type { QwikIntrinsicElements } from \"@builder.io/qwik\";\n\nexport type CentralIconProps = {\n size?: string | number;\n color?: string;\n ariaHidden?: boolean;\n ariaLabel?: string;\n} & Omit<QwikIntrinsicElements[\"svg\"], \"width\" | \"height\" | \"viewBox\" | \"fill\" | \"xmlns\" | \"role\" | \"aria-hidden\" | \"aria-label\">;\n\nexport function svgAttrs(props: CentralIconProps): Record<string, unknown> {\n const { size = 24, color, ariaHidden = true, ariaLabel, style, ...rest } = props;\n const dim = typeof size === \"number\" ? `${size}px` : size;\n return {\n ...rest,\n width: dim,\n height: dim,\n viewBox: \"0 0 24 24\",\n fill: \"none\",\n xmlns: \"http://www.w3.org/2000/svg\",\n role: ariaHidden ? undefined : \"img\",\n \"aria-hidden\": ariaHidden,\n \"aria-label\": ariaHidden ? undefined : ariaLabel,\n style: color ? { color, ...style } : style,\n };\n}\n",
|
|
6
|
+
"import { svgAttrs, type CentralIconProps } from \"../CentralIconBase\";\n\nexport const IconEmail2Block = (props: CentralIconProps) => (\n <svg {...svgAttrs({ ...props, ariaLabel: \"email-2-block\" })} dangerouslySetInnerHTML={\"<path fill-rule=\\\"evenodd\\\" clip-rule=\\\"evenodd\\\" d=\\\"M22 9.11816L12 14.1182L4 10.1172V18H12V20H2V4H22V9.11816Z\\\" fill=\\\"currentColor\\\"/><path fill-rule=\\\"evenodd\\\" clip-rule=\\\"evenodd\\\" d=\\\"M15.7419 14.2424C17.2649 12.7193 19.7345 12.7193 21.2575 14.2424C22.7806 15.7654 22.7806 18.235 21.2575 19.758C19.7345 21.2811 17.2649 21.2811 15.7419 19.758C14.2188 18.235 14.2188 15.7654 15.7419 14.2424ZM17.7956 18.9758C18.5355 19.2389 19.3928 19.0778 19.9851 18.4855C20.5773 17.8933 20.7384 17.036 20.4753 16.2961L17.7956 18.9758ZM19.2028 15.0236C18.4632 14.7611 17.6063 14.9229 17.0144 15.5148C16.4224 16.1068 16.2606 16.9637 16.5231 17.7033L19.2028 15.0236Z\\\" fill=\\\"currentColor\\\"/>\"} />\n);\n\nexport default IconEmail2Block;\n"
|
|
7
|
+
],
|
|
8
|
+
"mappings": "AASO,SAAS,CAAQ,CAAC,EAAkD,CACzE,IAAQ,OAAO,GAAI,QAAO,aAAa,GAAM,YAAW,WAAU,GAAS,EACrE,EAAM,OAAO,IAAS,SAAW,GAAG,MAAW,EACrD,MAAO,IACF,EACH,MAAO,EACP,OAAQ,EACR,QAAS,YACT,KAAM,OACN,MAAO,6BACP,KAAM,EAAa,OAAY,MAC/B,cAAe,EACf,aAAc,EAAa,OAAY,EACvC,MAAO,EAAQ,CAAE,WAAU,CAAM,EAAI,CACvC,qDCrBK,IAAM,EAAkB,CAAC,IAC9B,EAAC,MAAD,IAAS,EAAS,IAAK,EAAO,UAAW,eAAgB,CAAC,EAAG,wBAAyB,0pBAA2qB,EAGpvB",
|
|
9
|
+
"debugId": "D099463FA949FACC64756E2164756E21",
|
|
10
|
+
"names": []
|
|
11
|
+
}
|
|
@@ -0,0 +1,3 @@
|
|
|
1
|
+
function l(e){let{size:r=24,color:i,ariaHidden:n=!0,ariaLabel:a,style:t,...s}=e,o=typeof r==="number"?`${r}px`:r;return{...s,width:o,height:o,viewBox:"0 0 24 24",fill:"none",xmlns:"http://www.w3.org/2000/svg",role:n?void 0:"img","aria-hidden":n,"aria-label":n?void 0:a,style:i?{color:i,...t}:t}}import{jsx as c}from"@builder.io/qwik/jsx-runtime";var d=(e)=>c("svg",{...l({...e,ariaLabel:"email-2-check, valid"}),dangerouslySetInnerHTML:'<path fill-rule="evenodd" clip-rule="evenodd" d="M22 9.11816L12 14.1182L4 10.1172V18H12V20H2V4H22V9.11816Z" fill="currentColor"/><path d="M23.793 13.6094L18.1582 20.9336L14.3594 17.7686L15.6406 16.2314L17.8408 18.0654L22.207 12.3906L23.793 13.6094Z" fill="currentColor"/>'}),h=d;export{h as default,d as IconEmail2Check};
|
|
2
|
+
|
|
3
|
+
//# debugId=96F3424F1E8F832664756E2164756E21
|
|
@@ -0,0 +1,11 @@
|
|
|
1
|
+
{
|
|
2
|
+
"version": 3,
|
|
3
|
+
"sources": ["src/CentralIconBase/index.tsx", "src/IconEmail2Check/index.tsx"],
|
|
4
|
+
"sourcesContent": [
|
|
5
|
+
"import type { QwikIntrinsicElements } from \"@builder.io/qwik\";\n\nexport type CentralIconProps = {\n size?: string | number;\n color?: string;\n ariaHidden?: boolean;\n ariaLabel?: string;\n} & Omit<QwikIntrinsicElements[\"svg\"], \"width\" | \"height\" | \"viewBox\" | \"fill\" | \"xmlns\" | \"role\" | \"aria-hidden\" | \"aria-label\">;\n\nexport function svgAttrs(props: CentralIconProps): Record<string, unknown> {\n const { size = 24, color, ariaHidden = true, ariaLabel, style, ...rest } = props;\n const dim = typeof size === \"number\" ? `${size}px` : size;\n return {\n ...rest,\n width: dim,\n height: dim,\n viewBox: \"0 0 24 24\",\n fill: \"none\",\n xmlns: \"http://www.w3.org/2000/svg\",\n role: ariaHidden ? undefined : \"img\",\n \"aria-hidden\": ariaHidden,\n \"aria-label\": ariaHidden ? undefined : ariaLabel,\n style: color ? { color, ...style } : style,\n };\n}\n",
|
|
6
|
+
"import { svgAttrs, type CentralIconProps } from \"../CentralIconBase\";\n\nexport const IconEmail2Check = (props: CentralIconProps) => (\n <svg {...svgAttrs({ ...props, ariaLabel: \"email-2-check, valid\" })} dangerouslySetInnerHTML={\"<path fill-rule=\\\"evenodd\\\" clip-rule=\\\"evenodd\\\" d=\\\"M22 9.11816L12 14.1182L4 10.1172V18H12V20H2V4H22V9.11816Z\\\" fill=\\\"currentColor\\\"/><path d=\\\"M23.793 13.6094L18.1582 20.9336L14.3594 17.7686L15.6406 16.2314L17.8408 18.0654L22.207 12.3906L23.793 13.6094Z\\\" fill=\\\"currentColor\\\"/>\"} />\n);\n\nexport default IconEmail2Check;\n"
|
|
7
|
+
],
|
|
8
|
+
"mappings": "AASO,SAAS,CAAQ,CAAC,EAAkD,CACzE,IAAQ,OAAO,GAAI,QAAO,aAAa,GAAM,YAAW,WAAU,GAAS,EACrE,EAAM,OAAO,IAAS,SAAW,GAAG,MAAW,EACrD,MAAO,IACF,EACH,MAAO,EACP,OAAQ,EACR,QAAS,YACT,KAAM,OACN,MAAO,6BACP,KAAM,EAAa,OAAY,MAC/B,cAAe,EACf,aAAc,EAAa,OAAY,EACvC,MAAO,EAAQ,CAAE,WAAU,CAAM,EAAI,CACvC,qDCrBK,IAAM,EAAkB,CAAC,IAC9B,EAAC,MAAD,IAAS,EAAS,IAAK,EAAO,UAAW,sBAAuB,CAAC,EAAG,wBAAyB,kRAA+R,EAG/W",
|
|
9
|
+
"debugId": "96F3424F1E8F832664756E2164756E21",
|
|
10
|
+
"names": []
|
|
11
|
+
}
|
|
@@ -0,0 +1,3 @@
|
|
|
1
|
+
function l(e){let{size:r=24,color:i,ariaHidden:n=!0,ariaLabel:a,style:t,...s}=e,o=typeof r==="number"?`${r}px`:r;return{...s,width:o,height:o,viewBox:"0 0 24 24",fill:"none",xmlns:"http://www.w3.org/2000/svg",role:n?void 0:"img","aria-hidden":n,"aria-label":n?void 0:a,style:i?{color:i,...t}:t}}import{jsx as c}from"@builder.io/qwik/jsx-runtime";var d=(e)=>c("svg",{...l({...e,ariaLabel:"email-2-incoming, request"}),dangerouslySetInnerHTML:'<path fill-rule="evenodd" clip-rule="evenodd" d="M22 9.11816L12 14.1182L4 10.1172V18H12V20H2V4H22V9.11816Z" fill="currentColor"/><path d="M19.707 14.207L17.9141 16H23V18H17.9141L19.707 19.793L18.293 21.207L14.0859 17L18.293 12.793L19.707 14.207Z" fill="currentColor"/>'}),u=d;export{u as default,d as IconEmail2Incoming};
|
|
2
|
+
|
|
3
|
+
//# debugId=91625091B144747264756E2164756E21
|
|
@@ -0,0 +1,11 @@
|
|
|
1
|
+
{
|
|
2
|
+
"version": 3,
|
|
3
|
+
"sources": ["src/CentralIconBase/index.tsx", "src/IconEmail2Incoming/index.tsx"],
|
|
4
|
+
"sourcesContent": [
|
|
5
|
+
"import type { QwikIntrinsicElements } from \"@builder.io/qwik\";\n\nexport type CentralIconProps = {\n size?: string | number;\n color?: string;\n ariaHidden?: boolean;\n ariaLabel?: string;\n} & Omit<QwikIntrinsicElements[\"svg\"], \"width\" | \"height\" | \"viewBox\" | \"fill\" | \"xmlns\" | \"role\" | \"aria-hidden\" | \"aria-label\">;\n\nexport function svgAttrs(props: CentralIconProps): Record<string, unknown> {\n const { size = 24, color, ariaHidden = true, ariaLabel, style, ...rest } = props;\n const dim = typeof size === \"number\" ? `${size}px` : size;\n return {\n ...rest,\n width: dim,\n height: dim,\n viewBox: \"0 0 24 24\",\n fill: \"none\",\n xmlns: \"http://www.w3.org/2000/svg\",\n role: ariaHidden ? undefined : \"img\",\n \"aria-hidden\": ariaHidden,\n \"aria-label\": ariaHidden ? undefined : ariaLabel,\n style: color ? { color, ...style } : style,\n };\n}\n",
|
|
6
|
+
"import { svgAttrs, type CentralIconProps } from \"../CentralIconBase\";\n\nexport const IconEmail2Incoming = (props: CentralIconProps) => (\n <svg {...svgAttrs({ ...props, ariaLabel: \"email-2-incoming, request\" })} dangerouslySetInnerHTML={\"<path fill-rule=\\\"evenodd\\\" clip-rule=\\\"evenodd\\\" d=\\\"M22 9.11816L12 14.1182L4 10.1172V18H12V20H2V4H22V9.11816Z\\\" fill=\\\"currentColor\\\"/><path d=\\\"M19.707 14.207L17.9141 16H23V18H17.9141L19.707 19.793L18.293 21.207L14.0859 17L18.293 12.793L19.707 14.207Z\\\" fill=\\\"currentColor\\\"/>\"} />\n);\n\nexport default IconEmail2Incoming;\n"
|
|
7
|
+
],
|
|
8
|
+
"mappings": "AASO,SAAS,CAAQ,CAAC,EAAkD,CACzE,IAAQ,OAAO,GAAI,QAAO,aAAa,GAAM,YAAW,WAAU,GAAS,EACrE,EAAM,OAAO,IAAS,SAAW,GAAG,MAAW,EACrD,MAAO,IACF,EACH,MAAO,EACP,OAAQ,EACR,QAAS,YACT,KAAM,OACN,MAAO,6BACP,KAAM,EAAa,OAAY,MAC/B,cAAe,EACf,aAAc,EAAa,OAAY,EACvC,MAAO,EAAQ,CAAE,WAAU,CAAM,EAAI,CACvC,qDCrBK,IAAM,EAAqB,CAAC,IACjC,EAAC,MAAD,IAAS,EAAS,IAAK,EAAO,UAAW,2BAA4B,CAAC,EAAG,wBAAyB,+QAA4R,EAGjX",
|
|
9
|
+
"debugId": "91625091B144747264756E2164756E21",
|
|
10
|
+
"names": []
|
|
11
|
+
}
|
|
@@ -0,0 +1,3 @@
|
|
|
1
|
+
function o(e){let{size:r=24,color:t,ariaHidden:n=!0,ariaLabel:a,style:i,...s}=e,l=typeof r==="number"?`${r}px`:r;return{...s,width:l,height:l,viewBox:"0 0 24 24",fill:"none",xmlns:"http://www.w3.org/2000/svg",role:n?void 0:"img","aria-hidden":n,"aria-label":n?void 0:a,style:t?{color:t,...i}:i}}import{jsx as p}from"@builder.io/qwik/jsx-runtime";var d=(e)=>p("svg",{...o({...e,ariaLabel:"email-2-plus, add"}),dangerouslySetInnerHTML:'<path fill-rule="evenodd" clip-rule="evenodd" d="M22 9.11816L12 14.1182L4 10.1172V18H12V20H2V4H22V9.11816Z" fill="currentColor"/><path d="M20 16H23V18H20V21H18V18H15V16H18V13H20V16Z" fill="currentColor"/>'}),m=d;export{m as default,d as IconEmail2Plus};
|
|
2
|
+
|
|
3
|
+
//# debugId=8CA3565A6E2C3A2664756E2164756E21
|
|
@@ -0,0 +1,11 @@
|
|
|
1
|
+
{
|
|
2
|
+
"version": 3,
|
|
3
|
+
"sources": ["src/CentralIconBase/index.tsx", "src/IconEmail2Plus/index.tsx"],
|
|
4
|
+
"sourcesContent": [
|
|
5
|
+
"import type { QwikIntrinsicElements } from \"@builder.io/qwik\";\n\nexport type CentralIconProps = {\n size?: string | number;\n color?: string;\n ariaHidden?: boolean;\n ariaLabel?: string;\n} & Omit<QwikIntrinsicElements[\"svg\"], \"width\" | \"height\" | \"viewBox\" | \"fill\" | \"xmlns\" | \"role\" | \"aria-hidden\" | \"aria-label\">;\n\nexport function svgAttrs(props: CentralIconProps): Record<string, unknown> {\n const { size = 24, color, ariaHidden = true, ariaLabel, style, ...rest } = props;\n const dim = typeof size === \"number\" ? `${size}px` : size;\n return {\n ...rest,\n width: dim,\n height: dim,\n viewBox: \"0 0 24 24\",\n fill: \"none\",\n xmlns: \"http://www.w3.org/2000/svg\",\n role: ariaHidden ? undefined : \"img\",\n \"aria-hidden\": ariaHidden,\n \"aria-label\": ariaHidden ? undefined : ariaLabel,\n style: color ? { color, ...style } : style,\n };\n}\n",
|
|
6
|
+
"import { svgAttrs, type CentralIconProps } from \"../CentralIconBase\";\n\nexport const IconEmail2Plus = (props: CentralIconProps) => (\n <svg {...svgAttrs({ ...props, ariaLabel: \"email-2-plus, add\" })} dangerouslySetInnerHTML={\"<path fill-rule=\\\"evenodd\\\" clip-rule=\\\"evenodd\\\" d=\\\"M22 9.11816L12 14.1182L4 10.1172V18H12V20H2V4H22V9.11816Z\\\" fill=\\\"currentColor\\\"/><path d=\\\"M20 16H23V18H20V21H18V18H15V16H18V13H20V16Z\\\" fill=\\\"currentColor\\\"/>\"} />\n);\n\nexport default IconEmail2Plus;\n"
|
|
7
|
+
],
|
|
8
|
+
"mappings": "AASO,SAAS,CAAQ,CAAC,EAAkD,CACzE,IAAQ,OAAO,GAAI,QAAO,aAAa,GAAM,YAAW,WAAU,GAAS,EACrE,EAAM,OAAO,IAAS,SAAW,GAAG,MAAW,EACrD,MAAO,IACF,EACH,MAAO,EACP,OAAQ,EACR,QAAS,YACT,KAAM,OACN,MAAO,6BACP,KAAM,EAAa,OAAY,MAC/B,cAAe,EACf,aAAc,EAAa,OAAY,EACvC,MAAO,EAAQ,CAAE,WAAU,CAAM,EAAI,CACvC,qDCrBK,IAAM,EAAiB,CAAC,IAC7B,EAAC,MAAD,IAAS,EAAS,IAAK,EAAO,UAAW,mBAAoB,CAAC,EAAG,wBAAyB,+MAA4N,EAGzS",
|
|
9
|
+
"debugId": "8CA3565A6E2C3A2664756E2164756E21",
|
|
10
|
+
"names": []
|
|
11
|
+
}
|
|
@@ -0,0 +1,3 @@
|
|
|
1
|
+
function l(e){let{size:r=24,color:t,ariaHidden:n=!0,ariaLabel:a,style:i,...s}=e,o=typeof r==="number"?`${r}px`:r;return{...s,width:o,height:o,viewBox:"0 0 24 24",fill:"none",xmlns:"http://www.w3.org/2000/svg",role:n?void 0:"img","aria-hidden":n,"aria-label":n?void 0:a,style:t?{color:t,...i}:i}}import{jsx as c}from"@builder.io/qwik/jsx-runtime";var d=(e)=>c("svg",{...l({...e,ariaLabel:"email-2-remove, cancel"}),dangerouslySetInnerHTML:'<path fill-rule="evenodd" clip-rule="evenodd" d="M22 9.11816L12 14.1182L4 10.1172V18H12V20H2V4H22V9.11816Z" fill="currentColor"/><path d="M22.957 14.957L20.6641 17.25L22.957 19.543L21.543 20.957L19.25 18.6641L16.957 20.957L15.543 19.543L17.8359 17.25L15.543 14.957L16.957 13.543L19.25 15.8359L21.543 13.543L22.957 14.957Z" fill="currentColor"/>'}),g=d;export{g as default,d as IconEmail2Remove};
|
|
2
|
+
|
|
3
|
+
//# debugId=8D030DC2820810F164756E2164756E21
|
|
@@ -0,0 +1,11 @@
|
|
|
1
|
+
{
|
|
2
|
+
"version": 3,
|
|
3
|
+
"sources": ["src/CentralIconBase/index.tsx", "src/IconEmail2Remove/index.tsx"],
|
|
4
|
+
"sourcesContent": [
|
|
5
|
+
"import type { QwikIntrinsicElements } from \"@builder.io/qwik\";\n\nexport type CentralIconProps = {\n size?: string | number;\n color?: string;\n ariaHidden?: boolean;\n ariaLabel?: string;\n} & Omit<QwikIntrinsicElements[\"svg\"], \"width\" | \"height\" | \"viewBox\" | \"fill\" | \"xmlns\" | \"role\" | \"aria-hidden\" | \"aria-label\">;\n\nexport function svgAttrs(props: CentralIconProps): Record<string, unknown> {\n const { size = 24, color, ariaHidden = true, ariaLabel, style, ...rest } = props;\n const dim = typeof size === \"number\" ? `${size}px` : size;\n return {\n ...rest,\n width: dim,\n height: dim,\n viewBox: \"0 0 24 24\",\n fill: \"none\",\n xmlns: \"http://www.w3.org/2000/svg\",\n role: ariaHidden ? undefined : \"img\",\n \"aria-hidden\": ariaHidden,\n \"aria-label\": ariaHidden ? undefined : ariaLabel,\n style: color ? { color, ...style } : style,\n };\n}\n",
|
|
6
|
+
"import { svgAttrs, type CentralIconProps } from \"../CentralIconBase\";\n\nexport const IconEmail2Remove = (props: CentralIconProps) => (\n <svg {...svgAttrs({ ...props, ariaLabel: \"email-2-remove, cancel\" })} dangerouslySetInnerHTML={\"<path fill-rule=\\\"evenodd\\\" clip-rule=\\\"evenodd\\\" d=\\\"M22 9.11816L12 14.1182L4 10.1172V18H12V20H2V4H22V9.11816Z\\\" fill=\\\"currentColor\\\"/><path d=\\\"M22.957 14.957L20.6641 17.25L22.957 19.543L21.543 20.957L19.25 18.6641L16.957 20.957L15.543 19.543L17.8359 17.25L15.543 14.957L16.957 13.543L19.25 15.8359L21.543 13.543L22.957 14.957Z\\\" fill=\\\"currentColor\\\"/>\"} />\n);\n\nexport default IconEmail2Remove;\n"
|
|
7
|
+
],
|
|
8
|
+
"mappings": "AASO,SAAS,CAAQ,CAAC,EAAkD,CACzE,IAAQ,OAAO,GAAI,QAAO,aAAa,GAAM,YAAW,WAAU,GAAS,EACrE,EAAM,OAAO,IAAS,SAAW,GAAG,MAAW,EACrD,MAAO,IACF,EACH,MAAO,EACP,OAAQ,EACR,QAAS,YACT,KAAM,OACN,MAAO,6BACP,KAAM,EAAa,OAAY,MAC/B,cAAe,EACf,aAAc,EAAa,OAAY,EACvC,MAAO,EAAQ,CAAE,WAAU,CAAM,EAAI,CACvC,qDCrBK,IAAM,EAAmB,CAAC,IAC/B,EAAC,MAAD,IAAS,EAAS,IAAK,EAAO,UAAW,wBAAyB,CAAC,EAAG,wBAAyB,2VAAwW,EAG1b",
|
|
9
|
+
"debugId": "8D030DC2820810F164756E2164756E21",
|
|
10
|
+
"names": []
|
|
11
|
+
}
|
|
@@ -0,0 +1,3 @@
|
|
|
1
|
+
function l(e){let{size:r=24,color:t,ariaHidden:n=!0,ariaLabel:a,style:i,...s}=e,o=typeof r==="number"?`${r}px`:r;return{...s,width:o,height:o,viewBox:"0 0 24 24",fill:"none",xmlns:"http://www.w3.org/2000/svg",role:n?void 0:"img","aria-hidden":n,"aria-label":n?void 0:a,style:t?{color:t,...i}:i}}import{jsx as p}from"@builder.io/qwik/jsx-runtime";var d=(e)=>p("svg",{...l({...e,ariaLabel:"email-2-unread"}),dangerouslySetInnerHTML:'<path fill-rule="evenodd" clip-rule="evenodd" d="M22 9.11816L12 14.1182L4 10.1172V18H12V20H2V4H22V9.11816Z" fill="currentColor"/><path d="M19.5 14C21.433 14 23 15.567 23 17.5C23 19.433 21.433 21 19.5 21C17.567 21 16 19.433 16 17.5C16 15.567 17.567 14 19.5 14Z" fill="currentColor"/>'}),u=d;export{u as default,d as IconEmail2Unread};
|
|
2
|
+
|
|
3
|
+
//# debugId=6EE4C7BA9F4DB15D64756E2164756E21
|
|
@@ -0,0 +1,11 @@
|
|
|
1
|
+
{
|
|
2
|
+
"version": 3,
|
|
3
|
+
"sources": ["src/CentralIconBase/index.tsx", "src/IconEmail2Unread/index.tsx"],
|
|
4
|
+
"sourcesContent": [
|
|
5
|
+
"import type { QwikIntrinsicElements } from \"@builder.io/qwik\";\n\nexport type CentralIconProps = {\n size?: string | number;\n color?: string;\n ariaHidden?: boolean;\n ariaLabel?: string;\n} & Omit<QwikIntrinsicElements[\"svg\"], \"width\" | \"height\" | \"viewBox\" | \"fill\" | \"xmlns\" | \"role\" | \"aria-hidden\" | \"aria-label\">;\n\nexport function svgAttrs(props: CentralIconProps): Record<string, unknown> {\n const { size = 24, color, ariaHidden = true, ariaLabel, style, ...rest } = props;\n const dim = typeof size === \"number\" ? `${size}px` : size;\n return {\n ...rest,\n width: dim,\n height: dim,\n viewBox: \"0 0 24 24\",\n fill: \"none\",\n xmlns: \"http://www.w3.org/2000/svg\",\n role: ariaHidden ? undefined : \"img\",\n \"aria-hidden\": ariaHidden,\n \"aria-label\": ariaHidden ? undefined : ariaLabel,\n style: color ? { color, ...style } : style,\n };\n}\n",
|
|
6
|
+
"import { svgAttrs, type CentralIconProps } from \"../CentralIconBase\";\n\nexport const IconEmail2Unread = (props: CentralIconProps) => (\n <svg {...svgAttrs({ ...props, ariaLabel: \"email-2-unread\" })} dangerouslySetInnerHTML={\"<path fill-rule=\\\"evenodd\\\" clip-rule=\\\"evenodd\\\" d=\\\"M22 9.11816L12 14.1182L4 10.1172V18H12V20H2V4H22V9.11816Z\\\" fill=\\\"currentColor\\\"/><path d=\\\"M19.5 14C21.433 14 23 15.567 23 17.5C23 19.433 21.433 21 19.5 21C17.567 21 16 19.433 16 17.5C16 15.567 17.567 14 19.5 14Z\\\" fill=\\\"currentColor\\\"/>\"} />\n);\n\nexport default IconEmail2Unread;\n"
|
|
7
|
+
],
|
|
8
|
+
"mappings": "AASO,SAAS,CAAQ,CAAC,EAAkD,CACzE,IAAQ,OAAO,GAAI,QAAO,aAAa,GAAM,YAAW,WAAU,GAAS,EACrE,EAAM,OAAO,IAAS,SAAW,GAAG,MAAW,EACrD,MAAO,IACF,EACH,MAAO,EACP,OAAQ,EACR,QAAS,YACT,KAAM,OACN,MAAO,6BACP,KAAM,EAAa,OAAY,MAC/B,cAAe,EACf,aAAc,EAAa,OAAY,EACvC,MAAO,EAAQ,CAAE,WAAU,CAAM,EAAI,CACvC,qDCrBK,IAAM,EAAmB,CAAC,IAC/B,EAAC,MAAD,IAAS,EAAS,IAAK,EAAO,UAAW,gBAAiB,CAAC,EAAG,wBAAyB,6RAA0S,EAGpX",
|
|
9
|
+
"debugId": "6EE4C7BA9F4DB15D64756E2164756E21",
|
|
10
|
+
"names": []
|
|
11
|
+
}
|
|
@@ -0,0 +1,3 @@
|
|
|
1
|
+
function C(e){let{size:r=24,color:n,ariaHidden:t=!0,ariaLabel:a,style:i,...l}=e,o=typeof r==="number"?`${r}px`:r;return{...l,width:o,height:o,viewBox:"0 0 24 24",fill:"none",xmlns:"http://www.w3.org/2000/svg",role:t?void 0:"img","aria-hidden":t,"aria-label":t?void 0:a,style:n?{color:n,...i}:i}}import{jsx as d}from"@builder.io/qwik/jsx-runtime";var s=(e)=>d("svg",{...C({...e,ariaLabel:"todoist"}),dangerouslySetInnerHTML:'<path d="M18.4599 2.5C20.1389 2.5 21.5 3.86112 21.5 5.54007V18.4599C21.5 20.1389 20.1389 21.5 18.4599 21.5H5.54007C3.86112 21.5 2.5 20.1389 2.5 18.4599V15.9585C3.31524 16.4333 5.2199 17.5426 5.68735 17.8065C5.97101 17.9666 6.24351 17.9631 6.51709 17.8053L14.2063 13.38C14.3707 13.285 14.3787 12.9934 14.1947 12.8877C13.9724 12.7622 13.7511 12.6351 13.5302 12.5074C13.4391 12.4578 13.3364 12.4325 13.2327 12.4337C13.1292 12.435 13.0279 12.4632 12.9382 12.5149C12.8461 12.5683 6.70281 16.1002 6.49738 16.2166C6.25157 16.3567 5.94764 16.3585 5.70242 16.2166L2.5 14.3559V12.7567C3.31515 13.2314 5.21987 14.3407 5.68735 14.6046C5.9717 14.7648 6.24342 14.7614 6.51709 14.6035L10.297 12.4279L10.3109 12.4198L14.2063 10.1782C14.3706 10.0831 14.3781 9.79152 14.1941 9.68646L14.0654 9.6134C13.8778 9.50659 13.6342 9.36729 13.5302 9.30667C13.4391 9.2571 13.3364 9.23178 13.2327 9.23303C13.1293 9.23432 13.0278 9.26203 12.9382 9.31363C12.8461 9.36647 6.70281 12.8989 6.49738 13.0153C6.3764 13.0844 6.23952 13.1208 6.10019 13.1208C5.96075 13.1208 5.82348 13.0845 5.70242 13.0153C5.52164 12.911 2.8655 11.367 2.5 11.1546V9.55542C3.31463 10.0302 5.21989 11.14 5.68735 11.4034C5.97164 11.5635 6.24347 11.56 6.51709 11.4022L10.3017 9.22433L10.3063 9.22144L14.2063 6.9769C14.3707 6.88187 14.3781 6.59088 14.1941 6.4852L14.0654 6.41156C13.8773 6.30479 13.6342 6.16604 13.5302 6.10541C13.4391 6.05584 13.3364 6.03052 13.2327 6.03177C13.1292 6.03306 13.0279 6.06073 12.9382 6.11237C12.8461 6.1658 6.70281 9.69764 6.49738 9.81461C6.37642 9.88371 6.23949 9.92011 6.10019 9.92014C5.96076 9.92014 5.82347 9.8838 5.70242 9.81461L2.5 7.95276V5.54007C2.5 3.86112 3.86112 2.5 5.54007 2.5H18.4599Z" fill="currentColor"/>'}),g=s;export{g as default,s as IconTodoist};
|
|
2
|
+
|
|
3
|
+
//# debugId=46AE7E3F669DB9E164756E2164756E21
|
|
@@ -0,0 +1,11 @@
|
|
|
1
|
+
{
|
|
2
|
+
"version": 3,
|
|
3
|
+
"sources": ["src/CentralIconBase/index.tsx", "src/IconTodoist/index.tsx"],
|
|
4
|
+
"sourcesContent": [
|
|
5
|
+
"import type { QwikIntrinsicElements } from \"@builder.io/qwik\";\n\nexport type CentralIconProps = {\n size?: string | number;\n color?: string;\n ariaHidden?: boolean;\n ariaLabel?: string;\n} & Omit<QwikIntrinsicElements[\"svg\"], \"width\" | \"height\" | \"viewBox\" | \"fill\" | \"xmlns\" | \"role\" | \"aria-hidden\" | \"aria-label\">;\n\nexport function svgAttrs(props: CentralIconProps): Record<string, unknown> {\n const { size = 24, color, ariaHidden = true, ariaLabel, style, ...rest } = props;\n const dim = typeof size === \"number\" ? `${size}px` : size;\n return {\n ...rest,\n width: dim,\n height: dim,\n viewBox: \"0 0 24 24\",\n fill: \"none\",\n xmlns: \"http://www.w3.org/2000/svg\",\n role: ariaHidden ? undefined : \"img\",\n \"aria-hidden\": ariaHidden,\n \"aria-label\": ariaHidden ? undefined : ariaLabel,\n style: color ? { color, ...style } : style,\n };\n}\n",
|
|
6
|
+
"import { svgAttrs, type CentralIconProps } from \"../CentralIconBase\";\n\nexport const IconTodoist = (props: CentralIconProps) => (\n <svg {...svgAttrs({ ...props, ariaLabel: \"todoist\" })} dangerouslySetInnerHTML={\"<path d=\\\"M18.4599 2.5C20.1389 2.5 21.5 3.86112 21.5 5.54007V18.4599C21.5 20.1389 20.1389 21.5 18.4599 21.5H5.54007C3.86112 21.5 2.5 20.1389 2.5 18.4599V15.9585C3.31524 16.4333 5.2199 17.5426 5.68735 17.8065C5.97101 17.9666 6.24351 17.9631 6.51709 17.8053L14.2063 13.38C14.3707 13.285 14.3787 12.9934 14.1947 12.8877C13.9724 12.7622 13.7511 12.6351 13.5302 12.5074C13.4391 12.4578 13.3364 12.4325 13.2327 12.4337C13.1292 12.435 13.0279 12.4632 12.9382 12.5149C12.8461 12.5683 6.70281 16.1002 6.49738 16.2166C6.25157 16.3567 5.94764 16.3585 5.70242 16.2166L2.5 14.3559V12.7567C3.31515 13.2314 5.21987 14.3407 5.68735 14.6046C5.9717 14.7648 6.24342 14.7614 6.51709 14.6035L10.297 12.4279L10.3109 12.4198L14.2063 10.1782C14.3706 10.0831 14.3781 9.79152 14.1941 9.68646L14.0654 9.6134C13.8778 9.50659 13.6342 9.36729 13.5302 9.30667C13.4391 9.2571 13.3364 9.23178 13.2327 9.23303C13.1293 9.23432 13.0278 9.26203 12.9382 9.31363C12.8461 9.36647 6.70281 12.8989 6.49738 13.0153C6.3764 13.0844 6.23952 13.1208 6.10019 13.1208C5.96075 13.1208 5.82348 13.0845 5.70242 13.0153C5.52164 12.911 2.8655 11.367 2.5 11.1546V9.55542C3.31463 10.0302 5.21989 11.14 5.68735 11.4034C5.97164 11.5635 6.24347 11.56 6.51709 11.4022L10.3017 9.22433L10.3063 9.22144L14.2063 6.9769C14.3707 6.88187 14.3781 6.59088 14.1941 6.4852L14.0654 6.41156C13.8773 6.30479 13.6342 6.16604 13.5302 6.10541C13.4391 6.05584 13.3364 6.03052 13.2327 6.03177C13.1292 6.03306 13.0279 6.06073 12.9382 6.11237C12.8461 6.1658 6.70281 9.69764 6.49738 9.81461C6.37642 9.88371 6.23949 9.92011 6.10019 9.92014C5.96076 9.92014 5.82347 9.8838 5.70242 9.81461L2.5 7.95276V5.54007C2.5 3.86112 3.86112 2.5 5.54007 2.5H18.4599Z\\\" fill=\\\"currentColor\\\"/>\"} />\n);\n\nexport default IconTodoist;\n"
|
|
7
|
+
],
|
|
8
|
+
"mappings": "AASO,SAAS,CAAQ,CAAC,EAAkD,CACzE,IAAQ,OAAO,GAAI,QAAO,aAAa,GAAM,YAAW,WAAU,GAAS,EACrE,EAAM,OAAO,IAAS,SAAW,GAAG,MAAW,EACrD,MAAO,IACF,EACH,MAAO,EACP,OAAQ,EACR,QAAS,YACT,KAAM,OACN,MAAO,6BACP,KAAM,EAAa,OAAY,MAC/B,cAAe,EACf,aAAc,EAAa,OAAY,EACvC,MAAO,EAAQ,CAAE,WAAU,CAAM,EAAI,CACvC,qDCrBK,IAAM,EAAc,CAAC,IAC1B,EAAC,MAAD,IAAS,EAAS,IAAK,EAAO,UAAW,SAAU,CAAC,EAAG,wBAAyB,6pDAAkqD,EAGruD",
|
|
9
|
+
"debugId": "46AE7E3F669DB9E164756E2164756E21",
|
|
10
|
+
"names": []
|
|
11
|
+
}
|
package/README.md
CHANGED
|
@@ -8,6 +8,7 @@ A collection of square filled Qwik icons with 0px radius and 2px stroke width, d
|
|
|
8
8
|
- [Installation](#installation)
|
|
9
9
|
- [Requirements](#requirements)
|
|
10
10
|
- [Usage](#usage)
|
|
11
|
+
- [Using Transparent Colors](#using-transparent-colors)
|
|
11
12
|
- [Icon Properties](#icon-properties)
|
|
12
13
|
- [Accessibility](#accessibility)
|
|
13
14
|
- [Available Packages](#available-packages)
|
|
@@ -87,6 +88,31 @@ import { IconHome } from "@central-icons-qwik/square-filled-radius-0-stroke-2/Ic
|
|
|
87
88
|
export const MyComponent = () => <IconHome />;
|
|
88
89
|
```
|
|
89
90
|
|
|
91
|
+
## Using transparent colors
|
|
92
|
+
|
|
93
|
+
Each icon is drawn from several overlapping shapes — strokes and fills — all painted with the current color. If that color already carries transparency (an alpha channel), every shape is drawn semi-transparent, so the places where shapes overlap get painted twice and look darker than the rest of the icon.
|
|
94
|
+
|
|
95
|
+
To apply a see-through color evenly, keep the color solid and set the transparency with `opacity` instead. `opacity` fades the whole icon as a single layer, so overlaps no longer stack:
|
|
96
|
+
|
|
97
|
+
```tsx
|
|
98
|
+
// ❌ overlaps look darker — the color carries transparency
|
|
99
|
+
<IconHome color="rgba(0, 0, 0, 0.5)" />
|
|
100
|
+
|
|
101
|
+
// ✅ uniform — solid color, transparency applied with opacity
|
|
102
|
+
<IconHome color="black" opacity={0.5} />
|
|
103
|
+
```
|
|
104
|
+
|
|
105
|
+
You can do the same in CSS by keeping `color` solid and setting `opacity` on the icon (or a wrapping element):
|
|
106
|
+
|
|
107
|
+
```css
|
|
108
|
+
.icon {
|
|
109
|
+
color: black;
|
|
110
|
+
opacity: 0.5; /* not: color: rgb(0 0 0 / 0.5) */
|
|
111
|
+
}
|
|
112
|
+
```
|
|
113
|
+
|
|
114
|
+
With Tailwind, use the `opacity-50` utility (it sets `opacity`) rather than the `text-black/50` color-opacity modifier, which bakes the alpha into the color and brings the overlap darkening back.
|
|
115
|
+
|
|
90
116
|
## Icon Properties
|
|
91
117
|
|
|
92
118
|
All icons accept the following properties:
|
|
@@ -602,6 +628,13 @@ Below is a complete list of available icons:
|
|
|
602
628
|
- IconChatBubble7
|
|
603
629
|
- IconChatBubbles
|
|
604
630
|
- IconMailbox
|
|
631
|
+
- IconEmail2Plus
|
|
632
|
+
- IconEmail2Remove
|
|
633
|
+
- IconEmail2Incoming
|
|
634
|
+
- IconEmail2Block
|
|
635
|
+
- IconEmail2Check
|
|
636
|
+
- IconEmail2Unread
|
|
637
|
+
- IconBookHeart
|
|
605
638
|
|
|
606
639
|
### Crypto
|
|
607
640
|
|
|
@@ -1869,6 +1902,8 @@ Below is a complete list of available icons:
|
|
|
1869
1902
|
- IconAtlassian
|
|
1870
1903
|
- IconJira
|
|
1871
1904
|
- IconConfluence
|
|
1905
|
+
- IconTodoist
|
|
1906
|
+
- IconBase44
|
|
1872
1907
|
|
|
1873
1908
|
### Sound & Music
|
|
1874
1909
|
|
|
@@ -2376,3 +2411,7 @@ Common issues and solutions:
|
|
|
2376
2411
|
3. **Bundle size concerns**
|
|
2377
2412
|
- Use specific imports instead of the main entry point
|
|
2378
2413
|
- Use a build tool supporting tree shaking
|
|
2414
|
+
|
|
2415
|
+
4. **Icons look darker where lines overlap**
|
|
2416
|
+
|
|
2417
|
+
- You're likely using a semi-transparent `color` (one with an alpha channel). Keep the color solid and apply transparency with `opacity` instead — see [Using transparent colors](#using-transparent-colors).
|