@central-icons-qwik/round-outlined-radius-2-stroke-2 1.1.292 → 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/IconSuitcase/index.mjs +2 -2
- package/IconSuitcase/index.mjs.map +3 -3
- package/README.md +38 -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 +8 -0
- package/index.mjs +8 -0
- package/license-check.js +1 -1
- package/package.json +1 -1
- package/skills/central-icons-qwik/SKILL.md +19 -2
package/IconAgents/index.mjs
CHANGED
|
@@ -1,3 +1,3 @@
|
|
|
1
|
-
function s(r){let{size:e=24,color:o,ariaHidden:t=!0,ariaLabel:l,style:n,...a}=r,i=typeof e==="number"?`${e}px`:e;return{...a,width:i,height:i,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:l,style:o?{color:o,...n}:n}}import{jsx as
|
|
1
|
+
function s(r){let{size:e=24,color:o,ariaHidden:t=!0,ariaLabel:l,style:n,...a}=r,i=typeof e==="number"?`${e}px`:e;return{...a,width:i,height:i,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:l,style:o?{color:o,...n}:n}}import{jsx as c}from"@builder.io/qwik/jsx-runtime";var d=(r)=>c("svg",{...s({...r,ariaLabel:"agents, connections, flow, roadmap"}),dangerouslySetInnerHTML:'<circle cx="18" cy="19" r="2" stroke="currentColor" stroke-width="2"/><circle cx="6" cy="5" r="2" stroke="currentColor" stroke-width="2"/><path d="M10.4139 10.5857L10.5855 10.4142C11.3665 9.63311 12.6329 9.63311 13.4139 10.4142L13.5855 10.5857C14.3665 11.3668 14.3665 12.6331 13.5855 13.4142L13.4139 13.5857C12.6329 14.3668 11.3665 14.3668 10.5855 13.5857L10.4139 13.4142C9.63286 12.6331 9.63286 11.3668 10.4139 10.5857Z" stroke="currentColor" stroke-width="2" stroke-linejoin="round"/><path d="M8 5H16.5C18.433 5 20 6.567 20 8.5C20 10.433 18.433 12 16.5 12H15" stroke="currentColor" stroke-width="2" stroke-linejoin="round"/><path d="M9 12H7.5C5.567 12 4 13.567 4 15.5C4 17.433 5.567 19 7.5 19H16" stroke="currentColor" stroke-width="2" stroke-linejoin="round"/>'}),w=d;export{w as default,d as IconAgents};
|
|
2
2
|
|
|
3
|
-
//# debugId=
|
|
3
|
+
//# debugId=ACAFE738635965A464756E2164756E21
|
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={\"<circle cx=\\\"18\\\" cy=\\\"19\\\" r=\\\"2\\\" stroke=\\\"currentColor\\\" stroke-width=\\\"2\\\"/><circle cx=\\\"6\\\" cy=\\\"5\\\" r=\\\"2\\\" stroke=\\\"currentColor\\\" stroke-width=\\\"2\\\"/><path d=\\\"M10.4139 10.5857L10.5855 10.4142C11.3665 9.63311 12.6329 9.63311 13.4139 10.4142L13.5855 10.5857C14.3665 11.3668 14.3665 12.6331 13.5855 13.4142L13.4139 13.5857C12.6329 14.3668 11.3665 14.3668 10.5855 13.5857L10.4139 13.4142C9.63286 12.6331 9.63286 11.3668 10.4139 10.5857Z\\\" stroke=\\\"currentColor\\\" stroke-width=\\\"2\\\" stroke-linejoin=\\\"round\\\"/><path d=\\\"M8 5H16.5C18.433 5 20 6.567 20 8.5C20 10.433 18.433 12 16.5 12H15\\\" stroke=\\\"currentColor\\\" stroke-width=\\\"2\\\" stroke-linejoin=\\\"round\\\"/><path d=\\\"M9 12H7.5C5.567 12 4 13.567 4 15.5C4 17.433 5.567 19 7.5 19H16\\\" stroke=\\\"currentColor\\\" stroke-width=\\\"2\\\" stroke-linejoin=\\\"round\\\"/>\"} />\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={\"<circle cx=\\\"18\\\" cy=\\\"19\\\" r=\\\"2\\\" stroke=\\\"currentColor\\\" stroke-width=\\\"2\\\"/><circle cx=\\\"6\\\" cy=\\\"5\\\" r=\\\"2\\\" stroke=\\\"currentColor\\\" stroke-width=\\\"2\\\"/><path d=\\\"M10.4139 10.5857L10.5855 10.4142C11.3665 9.63311 12.6329 9.63311 13.4139 10.4142L13.5855 10.5857C14.3665 11.3668 14.3665 12.6331 13.5855 13.4142L13.4139 13.5857C12.6329 14.3668 11.3665 14.3668 10.5855 13.5857L10.4139 13.4142C9.63286 12.6331 9.63286 11.3668 10.4139 10.5857Z\\\" stroke=\\\"currentColor\\\" stroke-width=\\\"2\\\" stroke-linejoin=\\\"round\\\"/><path d=\\\"M8 5H16.5C18.433 5 20 6.567 20 8.5C20 10.433 18.433 12 16.5 12H15\\\" stroke=\\\"currentColor\\\" stroke-width=\\\"2\\\" stroke-linejoin=\\\"round\\\"/><path d=\\\"M9 12H7.5C5.567 12 4 13.567 4 15.5C4 17.433 5.567 19 7.5 19H16\\\" stroke=\\\"currentColor\\\" stroke-width=\\\"2\\\" stroke-linejoin=\\\"round\\\"/>\"} />\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,8vBAA2yB,EAGz4B",
|
|
9
|
+
"debugId": "ACAFE738635965A464756E2164756E21",
|
|
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 a(r){let{size:e=24,color:o,ariaHidden:t=!0,ariaLabel:s,style:n,...l}=r,i=typeof e==="number"?`${e}px`:e;return{...l,width:i,height:i,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:s,style:o?{color:o,...n}:n}}import{jsx as p}from"@builder.io/qwik/jsx-runtime";var d=(r)=>p("svg",{...a({...r,ariaLabel:"book-heart, daily, diary"}),dangerouslySetInnerHTML:'<path d="M7 21H17C18.1046 21 19 20.1046 19 19V5C19 3.89543 18.1046 3 17 3H7C5.89543 3 5 3.89543 5 5V19M7 21C5.89543 21 5 20.1046 5 19M7 21H10M5 19C5 17.8954 5.89543 17 7 17H17C18.1046 17 19 16.1046 19 15V12" stroke="currentColor" stroke-width="2"/><path d="M11.999 7.84994C13.5027 6.87872 15.251 7.92024 15.251 9.6683C15.2507 12.0005 11.999 13.2806 11.999 13.2806C11.9653 13.2672 8.74836 11.9883 8.74805 9.6683C8.74805 7.92041 10.4954 6.87922 11.999 7.84994Z" stroke="currentColor" stroke-width="2" stroke-linejoin="round"/>'}),h=d;export{h as default,d as IconBookHeart};
|
|
2
|
+
|
|
3
|
+
//# debugId=7EF3549AB993AA6164756E2164756E21
|
|
@@ -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 d=\\\"M7 21H17C18.1046 21 19 20.1046 19 19V5C19 3.89543 18.1046 3 17 3H7C5.89543 3 5 3.89543 5 5V19M7 21C5.89543 21 5 20.1046 5 19M7 21H10M5 19C5 17.8954 5.89543 17 7 17H17C18.1046 17 19 16.1046 19 15V12\\\" stroke=\\\"currentColor\\\" stroke-width=\\\"2\\\"/><path d=\\\"M11.999 7.84994C13.5027 6.87872 15.251 7.92024 15.251 9.6683C15.2507 12.0005 11.999 13.2806 11.999 13.2806C11.9653 13.2672 8.74836 11.9883 8.74805 9.6683C8.74805 7.92041 10.4954 6.87922 11.999 7.84994Z\\\" stroke=\\\"currentColor\\\" stroke-width=\\\"2\\\" stroke-linejoin=\\\"round\\\"/>\"} />\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,+gBAA8hB,EAGlnB",
|
|
9
|
+
"debugId": "7EF3549AB993AA6164756E2164756E21",
|
|
10
|
+
"names": []
|
|
11
|
+
}
|
|
@@ -0,0 +1,3 @@
|
|
|
1
|
+
function l(e){let{size:r=24,color:n,ariaHidden:t=!0,ariaLabel:a,style:o,...s}=e,i=typeof r==="number"?`${r}px`:r;return{...s,width:i,height:i,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,...o}:o}}import{jsx as c}from"@builder.io/qwik/jsx-runtime";var d=(e)=>c("svg",{...l({...e,ariaLabel:"email-2-block"}),dangerouslySetInnerHTML:'<path d="M3.28809 8.64404L11.1055 12.5528C11.6685 12.8343 12.3313 12.8343 12.8943 12.5528L20.4472 8.77639C20.786 8.607 21 8.26074 21 7.88196V7C21 5.89543 20.1046 5 19 5H5C3.89543 5 3 5.89543 3 7V17C3 18.1046 3.89543 19 5 19H11" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"/><path d="M16.3787 19.1213C17.5503 20.2929 19.4497 20.2929 20.6213 19.1213C21.7929 17.9497 21.7929 16.0503 20.6213 14.8787M16.3787 19.1213C15.2071 17.9497 15.2071 16.0503 16.3787 14.8787C17.5503 13.7071 19.4497 13.7071 20.6213 14.8787M16.3787 19.1213L20.6213 14.8787" stroke="currentColor" stroke-width="1.8"/>'}),m=d;export{m as default,d as IconEmail2Block};
|
|
2
|
+
|
|
3
|
+
//# debugId=A164E62A105ADB0D64756E2164756E21
|
|
@@ -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 d=\\\"M3.28809 8.64404L11.1055 12.5528C11.6685 12.8343 12.3313 12.8343 12.8943 12.5528L20.4472 8.77639C20.786 8.607 21 8.26074 21 7.88196V7C21 5.89543 20.1046 5 19 5H5C3.89543 5 3 5.89543 3 7V17C3 18.1046 3.89543 19 5 19H11\\\" stroke=\\\"currentColor\\\" stroke-width=\\\"2\\\" stroke-linecap=\\\"round\\\" stroke-linejoin=\\\"round\\\"/><path d=\\\"M16.3787 19.1213C17.5503 20.2929 19.4497 20.2929 20.6213 19.1213C21.7929 17.9497 21.7929 16.0503 20.6213 14.8787M16.3787 19.1213C15.2071 17.9497 15.2071 16.0503 16.3787 14.8787C17.5503 13.7071 19.4497 13.7071 20.6213 14.8787M16.3787 19.1213L20.6213 14.8787\\\" stroke=\\\"currentColor\\\" stroke-width=\\\"1.8\\\"/>\"} />\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,mnBAAooB,EAG7sB",
|
|
9
|
+
"debugId": "A164E62A105ADB0D64756E2164756E21",
|
|
10
|
+
"names": []
|
|
11
|
+
}
|
|
@@ -0,0 +1,3 @@
|
|
|
1
|
+
function a(e){let{size:r=24,color:t,ariaHidden:n=!0,ariaLabel:l,style:o,...s}=e,i=typeof r==="number"?`${r}px`:r;return{...s,width:i,height:i,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,...o}:o}}import{jsx as c}from"@builder.io/qwik/jsx-runtime";var d=(e)=>c("svg",{...a({...e,ariaLabel:"email-2-check, valid"}),dangerouslySetInnerHTML:'<path d="M3.28809 8.64404L11.1055 12.5528C11.6685 12.8343 12.3313 12.8343 12.8943 12.5528L20.4472 8.77639C20.786 8.607 21 8.26074 21 7.88196V7C21 5.89543 20.1046 5 19 5H5C3.89543 5 3 5.89543 3 7V17C3 18.1046 3.89543 19 5 19H11" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"/><path d="M22 14L18 19.5L16 17.5" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"/>'}),g=d;export{g as default,d as IconEmail2Check};
|
|
2
|
+
|
|
3
|
+
//# debugId=C6AB4EB6AD7AFDEA64756E2164756E21
|
|
@@ -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 d=\\\"M3.28809 8.64404L11.1055 12.5528C11.6685 12.8343 12.3313 12.8343 12.8943 12.5528L20.4472 8.77639C20.786 8.607 21 8.26074 21 7.88196V7C21 5.89543 20.1046 5 19 5H5C3.89543 5 3 5.89543 3 7V17C3 18.1046 3.89543 19 5 19H11\\\" stroke=\\\"currentColor\\\" stroke-width=\\\"2\\\" stroke-linecap=\\\"round\\\" stroke-linejoin=\\\"round\\\"/><path d=\\\"M22 14L18 19.5L16 17.5\\\" stroke=\\\"currentColor\\\" stroke-width=\\\"2\\\" stroke-linecap=\\\"round\\\" stroke-linejoin=\\\"round\\\"/>\"} />\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,sbAA2c,EAG3hB",
|
|
9
|
+
"debugId": "C6AB4EB6AD7AFDEA64756E2164756E21",
|
|
10
|
+
"names": []
|
|
11
|
+
}
|
|
@@ -0,0 +1,3 @@
|
|
|
1
|
+
function s(e){let{size:r=24,color:o,ariaHidden:n=!0,ariaLabel:l,style:t,...a}=e,i=typeof r==="number"?`${r}px`:r;return{...a,width:i,height:i,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:o?{color:o,...t}:t}}import{jsx as c}from"@builder.io/qwik/jsx-runtime";var d=(e)=>c("svg",{...s({...e,ariaLabel:"email-2-incoming, request"}),dangerouslySetInnerHTML:'<path d="M3.28809 8.64404L11.1055 12.5528C11.6685 12.8343 12.3313 12.8343 12.8943 12.5528L20.4472 8.77639C20.786 8.607 21 8.26074 21 7.88196V7C21 5.89543 20.1046 5 19 5H5C3.89543 5 3 5.89543 3 7V17C3 18.1046 3.89543 19 5 19H11" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"/><path d="M18.5 14L15.5 17L18.5 20" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"/><path d="M22 17H15.5" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"/>'}),m=d;export{m as default,d as IconEmail2Incoming};
|
|
2
|
+
|
|
3
|
+
//# debugId=3E6FC3C4FDE4027A64756E2164756E21
|
|
@@ -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 d=\\\"M3.28809 8.64404L11.1055 12.5528C11.6685 12.8343 12.3313 12.8343 12.8943 12.5528L20.4472 8.77639C20.786 8.607 21 8.26074 21 7.88196V7C21 5.89543 20.1046 5 19 5H5C3.89543 5 3 5.89543 3 7V17C3 18.1046 3.89543 19 5 19H11\\\" stroke=\\\"currentColor\\\" stroke-width=\\\"2\\\" stroke-linecap=\\\"round\\\" stroke-linejoin=\\\"round\\\"/><path d=\\\"M18.5 14L15.5 17L18.5 20\\\" stroke=\\\"currentColor\\\" stroke-width=\\\"2\\\" stroke-linecap=\\\"round\\\" stroke-linejoin=\\\"round\\\"/><path d=\\\"M22 17H15.5\\\" stroke=\\\"currentColor\\\" stroke-width=\\\"2\\\" stroke-linecap=\\\"round\\\" stroke-linejoin=\\\"round\\\"/>\"} />\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,qiBAAokB,EAGzpB",
|
|
9
|
+
"debugId": "3E6FC3C4FDE4027A64756E2164756E21",
|
|
10
|
+
"names": []
|
|
11
|
+
}
|
|
@@ -0,0 +1,3 @@
|
|
|
1
|
+
function l(e){let{size:r=24,color:t,ariaHidden:n=!0,ariaLabel:s,style:o,...a}=e,i=typeof r==="number"?`${r}px`:r;return{...a,width:i,height:i,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:s,style:t?{color:t,...o}:o}}import{jsx as p}from"@builder.io/qwik/jsx-runtime";var d=(e)=>p("svg",{...l({...e,ariaLabel:"email-2-plus, add"}),dangerouslySetInnerHTML:'<path d="M3.28809 8.64404L11.1055 12.5528C11.6685 12.8343 12.3313 12.8343 12.8943 12.5528L20.4472 8.77639C20.786 8.607 21 8.26074 21 7.88196V7C21 5.89543 20.1046 5 19 5H5C3.89543 5 3 5.89543 3 7V17C3 18.1046 3.89543 19 5 19H11" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"/><path d="M16 17H22M19 14V20" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"/>'}),m=d;export{m as default,d as IconEmail2Plus};
|
|
2
|
+
|
|
3
|
+
//# debugId=B28ED74FDA7E3C7F64756E2164756E21
|
|
@@ -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 d=\\\"M3.28809 8.64404L11.1055 12.5528C11.6685 12.8343 12.3313 12.8343 12.8943 12.5528L20.4472 8.77639C20.786 8.607 21 8.26074 21 7.88196V7C21 5.89543 20.1046 5 19 5H5C3.89543 5 3 5.89543 3 7V17C3 18.1046 3.89543 19 5 19H11\\\" stroke=\\\"currentColor\\\" stroke-width=\\\"2\\\" stroke-linecap=\\\"round\\\" stroke-linejoin=\\\"round\\\"/><path d=\\\"M16 17H22M19 14V20\\\" stroke=\\\"currentColor\\\" stroke-width=\\\"2\\\" stroke-linecap=\\\"round\\\" stroke-linejoin=\\\"round\\\"/>\"} />\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,kbAAuc,EAGphB",
|
|
9
|
+
"debugId": "B28ED74FDA7E3C7F64756E2164756E21",
|
|
10
|
+
"names": []
|
|
11
|
+
}
|
|
@@ -0,0 +1,3 @@
|
|
|
1
|
+
function a(e){let{size:r=24,color:n,ariaHidden:t=!0,ariaLabel:l,style:o,...s}=e,i=typeof r==="number"?`${r}px`:r;return{...s,width:i,height:i,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:l,style:n?{color:n,...o}:o}}import{jsx as c}from"@builder.io/qwik/jsx-runtime";var d=(e)=>c("svg",{...a({...e,ariaLabel:"email-2-remove, cancel"}),dangerouslySetInnerHTML:'<path d="M3.28809 8.64404L11.1055 12.5528C11.6685 12.8343 12.3313 12.8343 12.8943 12.5528L20.4472 8.77639C20.786 8.607 21 8.26074 21 7.88196V7C21 5.89543 20.1046 5 19 5H5C3.89543 5 3 5.89543 3 7V17C3 18.1046 3.89543 19 5 19H11" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"/><path d="M17 19.5L19.25 17.25M19.25 17.25L21.5 15M19.25 17.25L17 15M19.25 17.25L21.5 19.5" stroke="currentColor" stroke-width="2" stroke-linecap="round"/>'}),u=d;export{u as default,d as IconEmail2Remove};
|
|
2
|
+
|
|
3
|
+
//# debugId=42B306183A38075764756E2164756E21
|
|
@@ -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 d=\\\"M3.28809 8.64404L11.1055 12.5528C11.6685 12.8343 12.3313 12.8343 12.8943 12.5528L20.4472 8.77639C20.786 8.607 21 8.26074 21 7.88196V7C21 5.89543 20.1046 5 19 5H5C3.89543 5 3 5.89543 3 7V17C3 18.1046 3.89543 19 5 19H11\\\" stroke=\\\"currentColor\\\" stroke-width=\\\"2\\\" stroke-linecap=\\\"round\\\" stroke-linejoin=\\\"round\\\"/><path d=\\\"M17 19.5L19.25 17.25M19.25 17.25L21.5 15M19.25 17.25L17 15M19.25 17.25L21.5 19.5\\\" stroke=\\\"currentColor\\\" stroke-width=\\\"2\\\" stroke-linecap=\\\"round\\\"/>\"} />\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,wdAA2e,EAG7jB",
|
|
9
|
+
"debugId": "42B306183A38075764756E2164756E21",
|
|
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-unread"}),dangerouslySetInnerHTML:'<path d="M3.28809 8.64404L11.1055 12.5528C11.6685 12.8343 12.3313 12.8343 12.8943 12.5528L20.4472 8.77639C20.786 8.607 21 8.26074 21 7.88196V7C21 5.89543 20.1046 5 19 5H5C3.89543 5 3 5.89543 3 7V17C3 18.1046 3.89543 19 5 19H11" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"/><circle cx="19.5" cy="17.5" r="3.5" fill="currentColor"/>'}),u=d;export{u as default,d as IconEmail2Unread};
|
|
2
|
+
|
|
3
|
+
//# debugId=36DC95CFC46F4F3564756E2164756E21
|
|
@@ -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 d=\\\"M3.28809 8.64404L11.1055 12.5528C11.6685 12.8343 12.3313 12.8343 12.8943 12.5528L20.4472 8.77639C20.786 8.607 21 8.26074 21 7.88196V7C21 5.89543 20.1046 5 19 5H5C3.89543 5 3 5.89543 3 7V17C3 18.1046 3.89543 19 5 19H11\\\" stroke=\\\"currentColor\\\" stroke-width=\\\"2\\\" stroke-linecap=\\\"round\\\" stroke-linejoin=\\\"round\\\"/><circle cx=\\\"19.5\\\" cy=\\\"17.5\\\" r=\\\"3.5\\\" 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,uXAA0Y,EAGpd",
|
|
9
|
+
"debugId": "36DC95CFC46F4F3564756E2164756E21",
|
|
10
|
+
"names": []
|
|
11
|
+
}
|
package/IconSuitcase/index.mjs
CHANGED
|
@@ -1,3 +1,3 @@
|
|
|
1
|
-
function s(r){let{size:e=24,color:t,ariaHidden:o=!0,ariaLabel:l,style:n,...a}=r,i=typeof e==="number"?`${e}px`:e;return{...a,width:i,height:i,viewBox:"0 0 24 24",fill:"none",xmlns:"http://www.w3.org/2000/svg",role:o?void 0:"img","aria-hidden":o,"aria-label":o?void 0:l,style:t?{color:t,...n}:n}}import{jsx as u}from"@builder.io/qwik/jsx-runtime";var d=(r)=>u("svg",{...s({...r,ariaLabel:"suitcase, luggage, case"}),dangerouslySetInnerHTML:'<path d="
|
|
1
|
+
function s(r){let{size:e=24,color:t,ariaHidden:o=!0,ariaLabel:l,style:n,...a}=r,i=typeof e==="number"?`${e}px`:e;return{...a,width:i,height:i,viewBox:"0 0 24 24",fill:"none",xmlns:"http://www.w3.org/2000/svg",role:o?void 0:"img","aria-hidden":o,"aria-label":o?void 0:l,style:t?{color:t,...n}:n}}import{jsx as u}from"@builder.io/qwik/jsx-runtime";var d=(r)=>u("svg",{...s({...r,ariaLabel:"suitcase, luggage, case"}),dangerouslySetInnerHTML:'<path d="M17 20V21" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"/><path d="M7 20V21" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"/><path d="M9 10V16" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"/><path d="M15 10V16" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"/><path d="M17 20H18C19.1046 20 20 19.1046 20 18V8C20 6.89543 19.1046 6 18 6H15H9H6C4.89543 6 4 6.89543 4 8V18C4 19.1046 4.89543 20 6 20H7H17Z" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"/><path d="M15 5.75V5C15 3.89543 14.1046 3 13 3H11C9.89543 3 9 3.89543 9 5L9 5.75" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"/>'}),h=d;export{h as default,d as IconSuitcase};
|
|
2
2
|
|
|
3
|
-
//# debugId=
|
|
3
|
+
//# debugId=B55137C33E162CAC64756E2164756E21
|
|
@@ -3,9 +3,9 @@
|
|
|
3
3
|
"sources": ["src/CentralIconBase/index.tsx", "src/IconSuitcase/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 IconSuitcase = (props: CentralIconProps) => (\n <svg {...svgAttrs({ ...props, ariaLabel: \"suitcase, luggage, case\" })} dangerouslySetInnerHTML={\"<path d=\\\"
|
|
6
|
+
"import { svgAttrs, type CentralIconProps } from \"../CentralIconBase\";\n\nexport const IconSuitcase = (props: CentralIconProps) => (\n <svg {...svgAttrs({ ...props, ariaLabel: \"suitcase, luggage, case\" })} dangerouslySetInnerHTML={\"<path d=\\\"M17 20V21\\\" stroke=\\\"currentColor\\\" stroke-width=\\\"2\\\" stroke-linecap=\\\"round\\\" stroke-linejoin=\\\"round\\\"/><path d=\\\"M7 20V21\\\" stroke=\\\"currentColor\\\" stroke-width=\\\"2\\\" stroke-linecap=\\\"round\\\" stroke-linejoin=\\\"round\\\"/><path d=\\\"M9 10V16\\\" stroke=\\\"currentColor\\\" stroke-width=\\\"2\\\" stroke-linecap=\\\"round\\\" stroke-linejoin=\\\"round\\\"/><path d=\\\"M15 10V16\\\" stroke=\\\"currentColor\\\" stroke-width=\\\"2\\\" stroke-linecap=\\\"round\\\" stroke-linejoin=\\\"round\\\"/><path d=\\\"M17 20H18C19.1046 20 20 19.1046 20 18V8C20 6.89543 19.1046 6 18 6H15H9H6C4.89543 6 4 6.89543 4 8V18C4 19.1046 4.89543 20 6 20H7H17Z\\\" stroke=\\\"currentColor\\\" stroke-width=\\\"2\\\" stroke-linecap=\\\"round\\\" stroke-linejoin=\\\"round\\\"/><path d=\\\"M15 5.75V5C15 3.89543 14.1046 3 13 3H11C9.89543 3 9 3.89543 9 5L9 5.75\\\" stroke=\\\"currentColor\\\" stroke-width=\\\"2\\\" stroke-linecap=\\\"round\\\" stroke-linejoin=\\\"round\\\"/>\"} />\n);\n\nexport default IconSuitcase;\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,EAAe,CAAC,IAC3B,EAAC,MAAD,IAAS,EAAS,IAAK,EAAO,UAAW,yBAA0B,CAAC,EAAG,wBAAyB
|
|
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,EAAe,CAAC,IAC3B,EAAC,MAAD,IAAS,EAAS,IAAK,EAAO,UAAW,yBAA0B,CAAC,EAAG,wBAAyB,0zBAAu3B,EAG18B",
|
|
9
|
+
"debugId": "B55137C33E162CAC64756E2164756E21",
|
|
10
10
|
"names": []
|
|
11
11
|
}
|
package/README.md
CHANGED
|
@@ -8,6 +8,7 @@ A collection of round outlined Qwik icons with 2px radius and 2px stroke width,
|
|
|
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/round-outlined-radius-2-stroke-2/I
|
|
|
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
|
|
|
@@ -1870,6 +1903,7 @@ Below is a complete list of available icons:
|
|
|
1870
1903
|
- IconJira
|
|
1871
1904
|
- IconConfluence
|
|
1872
1905
|
- IconTodoist
|
|
1906
|
+
- IconBase44
|
|
1873
1907
|
|
|
1874
1908
|
### Sound & Music
|
|
1875
1909
|
|
|
@@ -2377,3 +2411,7 @@ Common issues and solutions:
|
|
|
2377
2411
|
3. **Bundle size concerns**
|
|
2378
2412
|
- Use specific imports instead of the main entry point
|
|
2379
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).
|