From 8d63dd45004eba32a72688bd08252149b9a05840 Mon Sep 17 00:00:00 2001 From: Mario Arita Date: Tue, 30 Jul 2024 00:01:45 -0600 Subject: [PATCH] v1.0.9 --- .babelrc | 8 ------ dist/outline/BuildingOfficeIcon.d.ts | 5 ++-- dist/outline/CheckCircleIcon.d.ts | 5 ++-- dist/outline/DevicePhoneMobileIcon.d.ts | 5 ++-- dist/outline/DocumentMinusIcon.d.ts | 5 ++-- dist/outline/DocumentPlusIcon.d.ts | 5 ++-- dist/outline/EnvelopeIcon.d.ts | 5 ++-- dist/outline/GlobeAltIcon.d.ts | 5 ++-- dist/outline/PencilSquareIcon.d.ts | 5 ++-- dist/outline/PhoneIcon.d.ts | 5 ++-- dist/outline/PrinterIcon.d.ts | 5 ++-- dist/outline/index.d.ts | 2 +- dist/outline/index.js | 2 +- dist/solid/BuildingOfficeIcon.d.ts | 5 ++-- dist/solid/CheckCircleIcon.d.ts | 5 ++-- dist/solid/DevicePhoneMobileIcon.d.ts | 5 ++-- dist/solid/DocumentMinusIcon.d.ts | 5 ++-- dist/solid/DocumentPlusIcon.d.ts | 5 ++-- dist/solid/EnvelopeIcon.d.ts | 5 ++-- dist/solid/GlobeAltIcon.d.ts | 5 ++-- dist/solid/PencilSquareIcon.d.ts | 5 ++-- dist/solid/PhoneIcon.d.ts | 5 ++-- dist/solid/PrinterIcon.d.ts | 5 ++-- dist/solid/index.d.ts | 2 +- dist/solid/index.js | 2 +- package.json | 2 +- scripts/generateIcons.js | 38 +++++++++++++++++++++---- scripts/iconMetadata.json | 1 + src/outline/BuildingOfficeIcon.tsx | 5 +++- src/outline/CheckCircleIcon.tsx | 5 +++- src/outline/DevicePhoneMobileIcon.tsx | 5 +++- src/outline/DocumentMinusIcon.tsx | 5 +++- src/outline/DocumentPlusIcon.tsx | 5 +++- src/outline/EnvelopeIcon.tsx | 5 +++- src/outline/GlobeAltIcon.tsx | 5 +++- src/outline/PencilSquareIcon.tsx | 5 +++- src/outline/PhoneIcon.tsx | 5 +++- src/outline/PrinterIcon.tsx | 5 +++- src/outline/index.ts | 2 +- src/solid/BuildingOfficeIcon.tsx | 5 +++- src/solid/CheckCircleIcon.tsx | 5 +++- src/solid/DevicePhoneMobileIcon.tsx | 5 +++- src/solid/DocumentMinusIcon.tsx | 5 +++- src/solid/DocumentPlusIcon.tsx | 5 +++- src/solid/EnvelopeIcon.tsx | 5 +++- src/solid/GlobeAltIcon.tsx | 5 +++- src/solid/PencilSquareIcon.tsx | 5 +++- src/solid/PhoneIcon.tsx | 5 +++- src/solid/PrinterIcon.tsx | 5 +++- src/solid/index.ts | 2 +- webpack.config.js | 6 ---- 51 files changed, 180 insertions(+), 87 deletions(-) delete mode 100644 .babelrc delete mode 100644 webpack.config.js diff --git a/.babelrc b/.babelrc deleted file mode 100644 index 4a8285b..0000000 --- a/.babelrc +++ /dev/null @@ -1,8 +0,0 @@ -{ - "presets": [ - "@babel/preset-env", - "@babel/preset-react", - "@babel/preset-typescript" - ], - "plugins": ["@babel/plugin-transform-runtime", "macros"] -} diff --git a/dist/outline/BuildingOfficeIcon.d.ts b/dist/outline/BuildingOfficeIcon.d.ts index 0797149..9f927ad 100644 --- a/dist/outline/BuildingOfficeIcon.d.ts +++ b/dist/outline/BuildingOfficeIcon.d.ts @@ -6,6 +6,7 @@ interface IconProps extends React.SVGAttributes { /** * @name BuildingOfficeIcon * + * * @category outline * * @description @@ -20,5 +21,5 @@ interface IconProps extends React.SVGAttributes { * * @returns {JSX.Element} Componente SVG. */ -export declare const BuildingOfficeIcon: React.ForwardRefExoticComponent>; -export {}; +declare const BuildingOfficeIcon: React.ForwardRefExoticComponent>; +export { BuildingOfficeIcon }; diff --git a/dist/outline/CheckCircleIcon.d.ts b/dist/outline/CheckCircleIcon.d.ts index b0456c2..66d824a 100644 --- a/dist/outline/CheckCircleIcon.d.ts +++ b/dist/outline/CheckCircleIcon.d.ts @@ -6,6 +6,7 @@ interface IconProps extends React.SVGAttributes { /** * @name CheckCircleIcon * + * * @category outline * * @description @@ -20,5 +21,5 @@ interface IconProps extends React.SVGAttributes { * * @returns {JSX.Element} Componente SVG. */ -export declare const CheckCircleIcon: React.ForwardRefExoticComponent>; -export {}; +declare const CheckCircleIcon: React.ForwardRefExoticComponent>; +export { CheckCircleIcon }; diff --git a/dist/outline/DevicePhoneMobileIcon.d.ts b/dist/outline/DevicePhoneMobileIcon.d.ts index c2bd9f2..c07003b 100644 --- a/dist/outline/DevicePhoneMobileIcon.d.ts +++ b/dist/outline/DevicePhoneMobileIcon.d.ts @@ -6,6 +6,7 @@ interface IconProps extends React.SVGAttributes { /** * @name DevicePhoneMobileIcon * + * * @category outline * * @description @@ -20,5 +21,5 @@ interface IconProps extends React.SVGAttributes { * * @returns {JSX.Element} Componente SVG. */ -export declare const DevicePhoneMobileIcon: React.ForwardRefExoticComponent>; -export {}; +declare const DevicePhoneMobileIcon: React.ForwardRefExoticComponent>; +export { DevicePhoneMobileIcon }; diff --git a/dist/outline/DocumentMinusIcon.d.ts b/dist/outline/DocumentMinusIcon.d.ts index 8f6b28a..a604e55 100644 --- a/dist/outline/DocumentMinusIcon.d.ts +++ b/dist/outline/DocumentMinusIcon.d.ts @@ -6,6 +6,7 @@ interface IconProps extends React.SVGAttributes { /** * @name DocumentMinusIcon * + * * @category outline * * @description @@ -20,5 +21,5 @@ interface IconProps extends React.SVGAttributes { * * @returns {JSX.Element} Componente SVG. */ -export declare const DocumentMinusIcon: React.ForwardRefExoticComponent>; -export {}; +declare const DocumentMinusIcon: React.ForwardRefExoticComponent>; +export { DocumentMinusIcon }; diff --git a/dist/outline/DocumentPlusIcon.d.ts b/dist/outline/DocumentPlusIcon.d.ts index 085a10a..ee5019f 100644 --- a/dist/outline/DocumentPlusIcon.d.ts +++ b/dist/outline/DocumentPlusIcon.d.ts @@ -5,6 +5,7 @@ interface IconProps extends React.SVGAttributes { } /** * @name DocumentPlusIcon + * * @alias AddIcon * * @category solid * @@ -22,5 +23,5 @@ interface IconProps extends React.SVGAttributes { * * @returns {JSX.Element} Componente SVG. */ -export declare const DocumentPlusIcon: React.ForwardRefExoticComponent>; -export {}; +declare const DocumentPlusIcon: React.ForwardRefExoticComponent>; +export { DocumentPlusIcon, DocumentPlusIcon as AddIcon }; diff --git a/dist/outline/EnvelopeIcon.d.ts b/dist/outline/EnvelopeIcon.d.ts index 3252deb..f535722 100644 --- a/dist/outline/EnvelopeIcon.d.ts +++ b/dist/outline/EnvelopeIcon.d.ts @@ -6,6 +6,7 @@ interface IconProps extends React.SVGAttributes { /** * @name EnvelopeIcon * + * * @category outline * * @description @@ -20,5 +21,5 @@ interface IconProps extends React.SVGAttributes { * * @returns {JSX.Element} Componente SVG. */ -export declare const EnvelopeIcon: React.ForwardRefExoticComponent>; -export {}; +declare const EnvelopeIcon: React.ForwardRefExoticComponent>; +export { EnvelopeIcon }; diff --git a/dist/outline/GlobeAltIcon.d.ts b/dist/outline/GlobeAltIcon.d.ts index 7221313..c485ab9 100644 --- a/dist/outline/GlobeAltIcon.d.ts +++ b/dist/outline/GlobeAltIcon.d.ts @@ -6,6 +6,7 @@ interface IconProps extends React.SVGAttributes { /** * @name GlobeAltIcon * + * * @category outline * * @description @@ -20,5 +21,5 @@ interface IconProps extends React.SVGAttributes { * * @returns {JSX.Element} Componente SVG. */ -export declare const GlobeAltIcon: React.ForwardRefExoticComponent>; -export {}; +declare const GlobeAltIcon: React.ForwardRefExoticComponent>; +export { GlobeAltIcon }; diff --git a/dist/outline/PencilSquareIcon.d.ts b/dist/outline/PencilSquareIcon.d.ts index 43e5cee..805244b 100644 --- a/dist/outline/PencilSquareIcon.d.ts +++ b/dist/outline/PencilSquareIcon.d.ts @@ -6,6 +6,7 @@ interface IconProps extends React.SVGAttributes { /** * @name PencilSquareIcon * + * * @category outline * * @description @@ -20,5 +21,5 @@ interface IconProps extends React.SVGAttributes { * * @returns {JSX.Element} Componente SVG. */ -export declare const PencilSquareIcon: React.ForwardRefExoticComponent>; -export {}; +declare const PencilSquareIcon: React.ForwardRefExoticComponent>; +export { PencilSquareIcon }; diff --git a/dist/outline/PhoneIcon.d.ts b/dist/outline/PhoneIcon.d.ts index 3a27176..701de3b 100644 --- a/dist/outline/PhoneIcon.d.ts +++ b/dist/outline/PhoneIcon.d.ts @@ -6,6 +6,7 @@ interface IconProps extends React.SVGAttributes { /** * @name PhoneIcon * + * * @category outline * * @description @@ -20,5 +21,5 @@ interface IconProps extends React.SVGAttributes { * * @returns {JSX.Element} Componente SVG. */ -export declare const PhoneIcon: React.ForwardRefExoticComponent>; -export {}; +declare const PhoneIcon: React.ForwardRefExoticComponent>; +export { PhoneIcon }; diff --git a/dist/outline/PrinterIcon.d.ts b/dist/outline/PrinterIcon.d.ts index a624172..7c4b05a 100644 --- a/dist/outline/PrinterIcon.d.ts +++ b/dist/outline/PrinterIcon.d.ts @@ -6,6 +6,7 @@ interface IconProps extends React.SVGAttributes { /** * @name PrinterIcon * + * * @category outline * * @description @@ -20,5 +21,5 @@ interface IconProps extends React.SVGAttributes { * * @returns {JSX.Element} Componente SVG. */ -export declare const PrinterIcon: React.ForwardRefExoticComponent>; -export {}; +declare const PrinterIcon: React.ForwardRefExoticComponent>; +export { PrinterIcon }; diff --git a/dist/outline/index.d.ts b/dist/outline/index.d.ts index 7535b35..8e02013 100644 --- a/dist/outline/index.d.ts +++ b/dist/outline/index.d.ts @@ -2,7 +2,7 @@ export { BuildingOfficeIcon } from './BuildingOfficeIcon'; export { CheckCircleIcon } from './CheckCircleIcon'; export { DevicePhoneMobileIcon } from './DevicePhoneMobileIcon'; export { DocumentMinusIcon } from './DocumentMinusIcon'; -export { DocumentPlusIcon } from './DocumentPlusIcon'; +export { DocumentPlusIcon, DocumentPlusIcon as AddIcon } from './DocumentPlusIcon'; export { EnvelopeIcon } from './EnvelopeIcon'; export { GlobeAltIcon } from './GlobeAltIcon'; export { PencilSquareIcon } from './PencilSquareIcon'; diff --git a/dist/outline/index.js b/dist/outline/index.js index b7bc53c..f1b06c6 100644 --- a/dist/outline/index.js +++ b/dist/outline/index.js @@ -1 +1 @@ -import*as e from"react";const o=e.forwardRef((({color:o="currentColor",...r},t)=>e.createElement("svg",{...r,ref:t,xmlns:"http://www.w3.org/2000/svg",fill:"none","stroke-width":"1.5","aria-hidden":"true","data-slot":"icon",viewBox:"0 0 24 24",stroke:"currentColor"},e.createElement("path",{"stroke-linecap":"round","stroke-linejoin":"round",d:"M3.75 21h16.5M4.5 3h15M5.25 3v18m13.5-18v18M9 6.75h1.5m-1.5 3h1.5m-1.5 3h1.5m3-6H15m-1.5 3H15m-1.5 3H15M9 21v-3.375c0-.621.504-1.125 1.125-1.125h3.75c.621 0 1.125.504 1.125 1.125V21"}))));o.displayName="BuildingOfficeIcon";const r=e.forwardRef((({color:o="currentColor",...r},t)=>e.createElement("svg",{...r,ref:t,xmlns:"http://www.w3.org/2000/svg",fill:"none","stroke-width":"1.5","aria-hidden":"true","data-slot":"icon",viewBox:"0 0 24 24",stroke:"currentColor"},e.createElement("path",{"stroke-linecap":"round","stroke-linejoin":"round",d:"M9 12.75 11.25 15 15 9.75M21 12a9 9 0 1 1-18 0 9 9 0 0 1 18 0Z"}))));r.displayName="CheckCircleIcon";const t=e.forwardRef((({color:o="currentColor",...r},t)=>e.createElement("svg",{...r,ref:t,xmlns:"http://www.w3.org/2000/svg",fill:"none","stroke-width":"1.5","aria-hidden":"true","data-slot":"icon",viewBox:"0 0 24 24",stroke:"currentColor"},e.createElement("path",{"stroke-linecap":"round","stroke-linejoin":"round",d:"M10.5 1.5H8.25A2.25 2.25 0 0 0 6 3.75v16.5a2.25 2.25 0 0 0 2.25 2.25h7.5A2.25 2.25 0 0 0 18 20.25V3.75a2.25 2.25 0 0 0-2.25-2.25H13.5m-3 0V3h3V1.5m-3 0h3m-3 18.75h3"}))));t.displayName="DevicePhoneMobileIcon";const n=e.forwardRef((({color:o="currentColor",...r},t)=>e.createElement("svg",{...r,ref:t,xmlns:"http://www.w3.org/2000/svg",fill:"none","stroke-width":"1.5","aria-hidden":"true","data-slot":"icon",viewBox:"0 0 24 24",stroke:"currentColor"},e.createElement("path",{"stroke-linecap":"round","stroke-linejoin":"round",d:"M19.5 14.25v-2.625a3.375 3.375 0 0 0-3.375-3.375h-1.5A1.125 1.125 0 0 1 13.5 7.125v-1.5a3.375 3.375 0 0 0-3.375-3.375H8.25m6.75 12H9m1.5-12H5.625c-.621 0-1.125.504-1.125 1.125v17.25c0 .621.504 1.125 1.125 1.125h12.75c.621 0 1.125-.504 1.125-1.125V11.25a9 9 0 0 0-9-9Z"}))));n.displayName="DocumentMinusIcon";const a=e.forwardRef((({color:o="currentColor",...r},t)=>e.createElement("svg",{...r,ref:t,xmlns:"http://www.w3.org/2000/svg",fill:"none","stroke-width":"1.5","aria-hidden":"true","data-slot":"icon",viewBox:"0 0 24 24",stroke:"currentColor"},e.createElement("path",{"stroke-linecap":"round","stroke-linejoin":"round",d:"M19.5 14.25v-2.625a3.375 3.375 0 0 0-3.375-3.375h-1.5A1.125 1.125 0 0 1 13.5 7.125v-1.5a3.375 3.375 0 0 0-3.375-3.375H8.25m3.75 9v6m3-3H9m1.5-12H5.625c-.621 0-1.125.504-1.125 1.125v17.25c0 .621.504 1.125 1.125 1.125h12.75c.621 0 1.125-.504 1.125-1.125V11.25a9 9 0 0 0-9-9Z"}))));a.displayName="DocumentPlusIcon";const l=e.forwardRef((({color:o="currentColor",...r},t)=>e.createElement("svg",{...r,ref:t,xmlns:"http://www.w3.org/2000/svg",fill:"none","stroke-width":"1.5","aria-hidden":"true","data-slot":"icon",viewBox:"0 0 24 24",stroke:"currentColor"},e.createElement("path",{"stroke-linecap":"round","stroke-linejoin":"round",d:"M21.75 6.75v10.5a2.25 2.25 0 0 1-2.25 2.25h-15a2.25 2.25 0 0 1-2.25-2.25V6.75m19.5 0A2.25 2.25 0 0 0 19.5 4.5h-15a2.25 2.25 0 0 0-2.25 2.25m19.5 0v.243a2.25 2.25 0 0 1-1.07 1.916l-7.5 4.615a2.25 2.25 0 0 1-2.36 0L3.32 8.91a2.25 2.25 0 0 1-1.07-1.916V6.75"}))));l.displayName="EnvelopeIcon";const c=e.forwardRef((({color:o="currentColor",...r},t)=>e.createElement("svg",{...r,ref:t,xmlns:"http://www.w3.org/2000/svg",fill:"none","stroke-width":"1.5","aria-hidden":"true","data-slot":"icon",viewBox:"0 0 24 24",stroke:"currentColor"},e.createElement("path",{"stroke-linecap":"round","stroke-linejoin":"round",d:"M12 21a9.004 9.004 0 0 0 8.716-6.747M12 21a9.004 9.004 0 0 1-8.716-6.747M12 21c2.485 0 4.5-4.03 4.5-9S14.485 3 12 3m0 18c-2.485 0-4.5-4.03-4.5-9S9.515 3 12 3m0 0a8.997 8.997 0 0 1 7.843 4.582M12 3a8.997 8.997 0 0 0-7.843 4.582m15.686 0A11.953 11.953 0 0 1 12 10.5c-2.998 0-5.74-1.1-7.843-2.918m15.686 0A8.959 8.959 0 0 1 21 12c0 .778-.099 1.533-.284 2.253m0 0A17.919 17.919 0 0 1 12 16.5a17.92 17.92 0 0 1-8.716-2.247m0 0A9.015 9.015 0 0 1 3 12c0-1.605.42-3.113 1.157-4.418"}))));c.displayName="GlobeAltIcon";const i=e.forwardRef((({color:o="currentColor",...r},t)=>e.createElement("svg",{...r,ref:t,xmlns:"http://www.w3.org/2000/svg",fill:"none","stroke-width":"1.5","aria-hidden":"true","data-slot":"icon",viewBox:"0 0 24 24",stroke:"currentColor"},e.createElement("path",{"stroke-linecap":"round","stroke-linejoin":"round",d:"m16.862 4.487 1.687-1.688a1.875 1.875 0 1 1 2.652 2.652L10.582 16.07a4.5 4.5 0 0 1-1.897 1.13L6 18l.8-2.685a4.5 4.5 0 0 1 1.13-1.897l8.932-8.931Zm0 0L19.5 7.125M18 14v4.75A2.25 2.25 0 0 1 15.75 21H5.25A2.25 2.25 0 0 1 3 18.75V8.25A2.25 2.25 0 0 1 5.25 6H10"}))));i.displayName="PencilSquareIcon";const s=e.forwardRef((({color:o="currentColor",...r},t)=>e.createElement("svg",{...r,ref:t,xmlns:"http://www.w3.org/2000/svg",fill:"none","stroke-width":"1.5","aria-hidden":"true","data-slot":"icon",viewBox:"0 0 24 24",stroke:"currentColor"},e.createElement("path",{"stroke-linecap":"round","stroke-linejoin":"round",d:"M2.25 6.75c0 8.284 6.716 15 15 15h2.25a2.25 2.25 0 0 0 2.25-2.25v-1.372c0-.516-.351-.966-.852-1.091l-4.423-1.106c-.44-.11-.902.055-1.173.417l-.97 1.293c-.282.376-.769.542-1.21.38a12.035 12.035 0 0 1-7.143-7.143c-.162-.441.004-.928.38-1.21l1.293-.97c.363-.271.527-.734.417-1.173L6.963 3.102a1.125 1.125 0 0 0-1.091-.852H4.5A2.25 2.25 0 0 0 2.25 4.5v2.25Z"}))));s.displayName="PhoneIcon";const d=e.forwardRef((({color:o="currentColor",...r},t)=>e.createElement("svg",{...r,ref:t,xmlns:"http://www.w3.org/2000/svg",fill:"none","stroke-width":"1.5","aria-hidden":"true","data-slot":"icon",viewBox:"0 0 24 24",stroke:"currentColor"},e.createElement("path",{"stroke-linecap":"round","stroke-linejoin":"round",d:"M6.72 13.829c-.24.03-.48.062-.72.096m.72-.096a42.415 42.415 0 0 1 10.56 0m-10.56 0L6.34 18m10.94-4.171c.24.03.48.062.72.096m-.72-.096L17.66 18m0 0 .229 2.523a1.125 1.125 0 0 1-1.12 1.227H7.231c-.662 0-1.18-.568-1.12-1.227L6.34 18m11.318 0h1.091A2.25 2.25 0 0 0 21 15.75V9.456c0-1.081-.768-2.015-1.837-2.175a48.055 48.055 0 0 0-1.913-.247M6.34 18H5.25A2.25 2.25 0 0 1 3 15.75V9.456c0-1.081.768-2.015 1.837-2.175a48.041 48.041 0 0 1 1.913-.247m10.5 0a48.536 48.536 0 0 0-10.5 0m10.5 0V3.375c0-.621-.504-1.125-1.125-1.125h-8.25c-.621 0-1.125.504-1.125 1.125v3.659M18 10.5h.008v.008H18V10.5Zm-3 0h.008v.008H15V10.5Z"}))));d.displayName="PrinterIcon";export{o as BuildingOfficeIcon,r as CheckCircleIcon,t as DevicePhoneMobileIcon,n as DocumentMinusIcon,a as DocumentPlusIcon,l as EnvelopeIcon,c as GlobeAltIcon,i as PencilSquareIcon,s as PhoneIcon,d as PrinterIcon}; +import*as e from"react";const o=e.forwardRef((({color:o="currentColor",...r},t)=>e.createElement("svg",{...r,ref:t,xmlns:"http://www.w3.org/2000/svg",fill:"none","stroke-width":"1.5","aria-hidden":"true","data-slot":"icon",viewBox:"0 0 24 24",stroke:"currentColor"},e.createElement("path",{"stroke-linecap":"round","stroke-linejoin":"round",d:"M3.75 21h16.5M4.5 3h15M5.25 3v18m13.5-18v18M9 6.75h1.5m-1.5 3h1.5m-1.5 3h1.5m3-6H15m-1.5 3H15m-1.5 3H15M9 21v-3.375c0-.621.504-1.125 1.125-1.125h3.75c.621 0 1.125.504 1.125 1.125V21"}))));o.displayName="BuildingOfficeIcon";const r=e.forwardRef((({color:o="currentColor",...r},t)=>e.createElement("svg",{...r,ref:t,xmlns:"http://www.w3.org/2000/svg",fill:"none","stroke-width":"1.5","aria-hidden":"true","data-slot":"icon",viewBox:"0 0 24 24",stroke:"currentColor"},e.createElement("path",{"stroke-linecap":"round","stroke-linejoin":"round",d:"M9 12.75 11.25 15 15 9.75M21 12a9 9 0 1 1-18 0 9 9 0 0 1 18 0Z"}))));r.displayName="CheckCircleIcon";const t=e.forwardRef((({color:o="currentColor",...r},t)=>e.createElement("svg",{...r,ref:t,xmlns:"http://www.w3.org/2000/svg",fill:"none","stroke-width":"1.5","aria-hidden":"true","data-slot":"icon",viewBox:"0 0 24 24",stroke:"currentColor"},e.createElement("path",{"stroke-linecap":"round","stroke-linejoin":"round",d:"M10.5 1.5H8.25A2.25 2.25 0 0 0 6 3.75v16.5a2.25 2.25 0 0 0 2.25 2.25h7.5A2.25 2.25 0 0 0 18 20.25V3.75a2.25 2.25 0 0 0-2.25-2.25H13.5m-3 0V3h3V1.5m-3 0h3m-3 18.75h3"}))));t.displayName="DevicePhoneMobileIcon";const n=e.forwardRef((({color:o="currentColor",...r},t)=>e.createElement("svg",{...r,ref:t,xmlns:"http://www.w3.org/2000/svg",fill:"none","stroke-width":"1.5","aria-hidden":"true","data-slot":"icon",viewBox:"0 0 24 24",stroke:"currentColor"},e.createElement("path",{"stroke-linecap":"round","stroke-linejoin":"round",d:"M19.5 14.25v-2.625a3.375 3.375 0 0 0-3.375-3.375h-1.5A1.125 1.125 0 0 1 13.5 7.125v-1.5a3.375 3.375 0 0 0-3.375-3.375H8.25m6.75 12H9m1.5-12H5.625c-.621 0-1.125.504-1.125 1.125v17.25c0 .621.504 1.125 1.125 1.125h12.75c.621 0 1.125-.504 1.125-1.125V11.25a9 9 0 0 0-9-9Z"}))));n.displayName="DocumentMinusIcon";const a=e.forwardRef((({color:o="currentColor",...r},t)=>e.createElement("svg",{...r,ref:t,xmlns:"http://www.w3.org/2000/svg",fill:"none","stroke-width":"1.5","aria-hidden":"true","data-slot":"icon",viewBox:"0 0 24 24",stroke:"currentColor"},e.createElement("path",{"stroke-linecap":"round","stroke-linejoin":"round",d:"M19.5 14.25v-2.625a3.375 3.375 0 0 0-3.375-3.375h-1.5A1.125 1.125 0 0 1 13.5 7.125v-1.5a3.375 3.375 0 0 0-3.375-3.375H8.25m3.75 9v6m3-3H9m1.5-12H5.625c-.621 0-1.125.504-1.125 1.125v17.25c0 .621.504 1.125 1.125 1.125h12.75c.621 0 1.125-.504 1.125-1.125V11.25a9 9 0 0 0-9-9Z"}))));a.displayName="DocumentPlusIcon";const l=e.forwardRef((({color:o="currentColor",...r},t)=>e.createElement("svg",{...r,ref:t,xmlns:"http://www.w3.org/2000/svg",fill:"none","stroke-width":"1.5","aria-hidden":"true","data-slot":"icon",viewBox:"0 0 24 24",stroke:"currentColor"},e.createElement("path",{"stroke-linecap":"round","stroke-linejoin":"round",d:"M21.75 6.75v10.5a2.25 2.25 0 0 1-2.25 2.25h-15a2.25 2.25 0 0 1-2.25-2.25V6.75m19.5 0A2.25 2.25 0 0 0 19.5 4.5h-15a2.25 2.25 0 0 0-2.25 2.25m19.5 0v.243a2.25 2.25 0 0 1-1.07 1.916l-7.5 4.615a2.25 2.25 0 0 1-2.36 0L3.32 8.91a2.25 2.25 0 0 1-1.07-1.916V6.75"}))));l.displayName="EnvelopeIcon";const c=e.forwardRef((({color:o="currentColor",...r},t)=>e.createElement("svg",{...r,ref:t,xmlns:"http://www.w3.org/2000/svg",fill:"none","stroke-width":"1.5","aria-hidden":"true","data-slot":"icon",viewBox:"0 0 24 24",stroke:"currentColor"},e.createElement("path",{"stroke-linecap":"round","stroke-linejoin":"round",d:"M12 21a9.004 9.004 0 0 0 8.716-6.747M12 21a9.004 9.004 0 0 1-8.716-6.747M12 21c2.485 0 4.5-4.03 4.5-9S14.485 3 12 3m0 18c-2.485 0-4.5-4.03-4.5-9S9.515 3 12 3m0 0a8.997 8.997 0 0 1 7.843 4.582M12 3a8.997 8.997 0 0 0-7.843 4.582m15.686 0A11.953 11.953 0 0 1 12 10.5c-2.998 0-5.74-1.1-7.843-2.918m15.686 0A8.959 8.959 0 0 1 21 12c0 .778-.099 1.533-.284 2.253m0 0A17.919 17.919 0 0 1 12 16.5a17.92 17.92 0 0 1-8.716-2.247m0 0A9.015 9.015 0 0 1 3 12c0-1.605.42-3.113 1.157-4.418"}))));c.displayName="GlobeAltIcon";const i=e.forwardRef((({color:o="currentColor",...r},t)=>e.createElement("svg",{...r,ref:t,xmlns:"http://www.w3.org/2000/svg",fill:"none","stroke-width":"1.5","aria-hidden":"true","data-slot":"icon",viewBox:"0 0 24 24",stroke:"currentColor"},e.createElement("path",{"stroke-linecap":"round","stroke-linejoin":"round",d:"m16.862 4.487 1.687-1.688a1.875 1.875 0 1 1 2.652 2.652L10.582 16.07a4.5 4.5 0 0 1-1.897 1.13L6 18l.8-2.685a4.5 4.5 0 0 1 1.13-1.897l8.932-8.931Zm0 0L19.5 7.125M18 14v4.75A2.25 2.25 0 0 1 15.75 21H5.25A2.25 2.25 0 0 1 3 18.75V8.25A2.25 2.25 0 0 1 5.25 6H10"}))));i.displayName="PencilSquareIcon";const s=e.forwardRef((({color:o="currentColor",...r},t)=>e.createElement("svg",{...r,ref:t,xmlns:"http://www.w3.org/2000/svg",fill:"none","stroke-width":"1.5","aria-hidden":"true","data-slot":"icon",viewBox:"0 0 24 24",stroke:"currentColor"},e.createElement("path",{"stroke-linecap":"round","stroke-linejoin":"round",d:"M2.25 6.75c0 8.284 6.716 15 15 15h2.25a2.25 2.25 0 0 0 2.25-2.25v-1.372c0-.516-.351-.966-.852-1.091l-4.423-1.106c-.44-.11-.902.055-1.173.417l-.97 1.293c-.282.376-.769.542-1.21.38a12.035 12.035 0 0 1-7.143-7.143c-.162-.441.004-.928.38-1.21l1.293-.97c.363-.271.527-.734.417-1.173L6.963 3.102a1.125 1.125 0 0 0-1.091-.852H4.5A2.25 2.25 0 0 0 2.25 4.5v2.25Z"}))));s.displayName="PhoneIcon";const d=e.forwardRef((({color:o="currentColor",...r},t)=>e.createElement("svg",{...r,ref:t,xmlns:"http://www.w3.org/2000/svg",fill:"none","stroke-width":"1.5","aria-hidden":"true","data-slot":"icon",viewBox:"0 0 24 24",stroke:"currentColor"},e.createElement("path",{"stroke-linecap":"round","stroke-linejoin":"round",d:"M6.72 13.829c-.24.03-.48.062-.72.096m.72-.096a42.415 42.415 0 0 1 10.56 0m-10.56 0L6.34 18m10.94-4.171c.24.03.48.062.72.096m-.72-.096L17.66 18m0 0 .229 2.523a1.125 1.125 0 0 1-1.12 1.227H7.231c-.662 0-1.18-.568-1.12-1.227L6.34 18m11.318 0h1.091A2.25 2.25 0 0 0 21 15.75V9.456c0-1.081-.768-2.015-1.837-2.175a48.055 48.055 0 0 0-1.913-.247M6.34 18H5.25A2.25 2.25 0 0 1 3 15.75V9.456c0-1.081.768-2.015 1.837-2.175a48.041 48.041 0 0 1 1.913-.247m10.5 0a48.536 48.536 0 0 0-10.5 0m10.5 0V3.375c0-.621-.504-1.125-1.125-1.125h-8.25c-.621 0-1.125.504-1.125 1.125v3.659M18 10.5h.008v.008H18V10.5Zm-3 0h.008v.008H15V10.5Z"}))));d.displayName="PrinterIcon";export{a as AddIcon,o as BuildingOfficeIcon,r as CheckCircleIcon,t as DevicePhoneMobileIcon,n as DocumentMinusIcon,a as DocumentPlusIcon,l as EnvelopeIcon,c as GlobeAltIcon,i as PencilSquareIcon,s as PhoneIcon,d as PrinterIcon}; diff --git a/dist/solid/BuildingOfficeIcon.d.ts b/dist/solid/BuildingOfficeIcon.d.ts index 0797149..9f927ad 100644 --- a/dist/solid/BuildingOfficeIcon.d.ts +++ b/dist/solid/BuildingOfficeIcon.d.ts @@ -6,6 +6,7 @@ interface IconProps extends React.SVGAttributes { /** * @name BuildingOfficeIcon * + * * @category outline * * @description @@ -20,5 +21,5 @@ interface IconProps extends React.SVGAttributes { * * @returns {JSX.Element} Componente SVG. */ -export declare const BuildingOfficeIcon: React.ForwardRefExoticComponent>; -export {}; +declare const BuildingOfficeIcon: React.ForwardRefExoticComponent>; +export { BuildingOfficeIcon }; diff --git a/dist/solid/CheckCircleIcon.d.ts b/dist/solid/CheckCircleIcon.d.ts index b0456c2..66d824a 100644 --- a/dist/solid/CheckCircleIcon.d.ts +++ b/dist/solid/CheckCircleIcon.d.ts @@ -6,6 +6,7 @@ interface IconProps extends React.SVGAttributes { /** * @name CheckCircleIcon * + * * @category outline * * @description @@ -20,5 +21,5 @@ interface IconProps extends React.SVGAttributes { * * @returns {JSX.Element} Componente SVG. */ -export declare const CheckCircleIcon: React.ForwardRefExoticComponent>; -export {}; +declare const CheckCircleIcon: React.ForwardRefExoticComponent>; +export { CheckCircleIcon }; diff --git a/dist/solid/DevicePhoneMobileIcon.d.ts b/dist/solid/DevicePhoneMobileIcon.d.ts index c2bd9f2..c07003b 100644 --- a/dist/solid/DevicePhoneMobileIcon.d.ts +++ b/dist/solid/DevicePhoneMobileIcon.d.ts @@ -6,6 +6,7 @@ interface IconProps extends React.SVGAttributes { /** * @name DevicePhoneMobileIcon * + * * @category outline * * @description @@ -20,5 +21,5 @@ interface IconProps extends React.SVGAttributes { * * @returns {JSX.Element} Componente SVG. */ -export declare const DevicePhoneMobileIcon: React.ForwardRefExoticComponent>; -export {}; +declare const DevicePhoneMobileIcon: React.ForwardRefExoticComponent>; +export { DevicePhoneMobileIcon }; diff --git a/dist/solid/DocumentMinusIcon.d.ts b/dist/solid/DocumentMinusIcon.d.ts index 8f6b28a..a604e55 100644 --- a/dist/solid/DocumentMinusIcon.d.ts +++ b/dist/solid/DocumentMinusIcon.d.ts @@ -6,6 +6,7 @@ interface IconProps extends React.SVGAttributes { /** * @name DocumentMinusIcon * + * * @category outline * * @description @@ -20,5 +21,5 @@ interface IconProps extends React.SVGAttributes { * * @returns {JSX.Element} Componente SVG. */ -export declare const DocumentMinusIcon: React.ForwardRefExoticComponent>; -export {}; +declare const DocumentMinusIcon: React.ForwardRefExoticComponent>; +export { DocumentMinusIcon }; diff --git a/dist/solid/DocumentPlusIcon.d.ts b/dist/solid/DocumentPlusIcon.d.ts index 085a10a..ee5019f 100644 --- a/dist/solid/DocumentPlusIcon.d.ts +++ b/dist/solid/DocumentPlusIcon.d.ts @@ -5,6 +5,7 @@ interface IconProps extends React.SVGAttributes { } /** * @name DocumentPlusIcon + * * @alias AddIcon * * @category solid * @@ -22,5 +23,5 @@ interface IconProps extends React.SVGAttributes { * * @returns {JSX.Element} Componente SVG. */ -export declare const DocumentPlusIcon: React.ForwardRefExoticComponent>; -export {}; +declare const DocumentPlusIcon: React.ForwardRefExoticComponent>; +export { DocumentPlusIcon, DocumentPlusIcon as AddIcon }; diff --git a/dist/solid/EnvelopeIcon.d.ts b/dist/solid/EnvelopeIcon.d.ts index 3252deb..f535722 100644 --- a/dist/solid/EnvelopeIcon.d.ts +++ b/dist/solid/EnvelopeIcon.d.ts @@ -6,6 +6,7 @@ interface IconProps extends React.SVGAttributes { /** * @name EnvelopeIcon * + * * @category outline * * @description @@ -20,5 +21,5 @@ interface IconProps extends React.SVGAttributes { * * @returns {JSX.Element} Componente SVG. */ -export declare const EnvelopeIcon: React.ForwardRefExoticComponent>; -export {}; +declare const EnvelopeIcon: React.ForwardRefExoticComponent>; +export { EnvelopeIcon }; diff --git a/dist/solid/GlobeAltIcon.d.ts b/dist/solid/GlobeAltIcon.d.ts index 7221313..c485ab9 100644 --- a/dist/solid/GlobeAltIcon.d.ts +++ b/dist/solid/GlobeAltIcon.d.ts @@ -6,6 +6,7 @@ interface IconProps extends React.SVGAttributes { /** * @name GlobeAltIcon * + * * @category outline * * @description @@ -20,5 +21,5 @@ interface IconProps extends React.SVGAttributes { * * @returns {JSX.Element} Componente SVG. */ -export declare const GlobeAltIcon: React.ForwardRefExoticComponent>; -export {}; +declare const GlobeAltIcon: React.ForwardRefExoticComponent>; +export { GlobeAltIcon }; diff --git a/dist/solid/PencilSquareIcon.d.ts b/dist/solid/PencilSquareIcon.d.ts index 43e5cee..805244b 100644 --- a/dist/solid/PencilSquareIcon.d.ts +++ b/dist/solid/PencilSquareIcon.d.ts @@ -6,6 +6,7 @@ interface IconProps extends React.SVGAttributes { /** * @name PencilSquareIcon * + * * @category outline * * @description @@ -20,5 +21,5 @@ interface IconProps extends React.SVGAttributes { * * @returns {JSX.Element} Componente SVG. */ -export declare const PencilSquareIcon: React.ForwardRefExoticComponent>; -export {}; +declare const PencilSquareIcon: React.ForwardRefExoticComponent>; +export { PencilSquareIcon }; diff --git a/dist/solid/PhoneIcon.d.ts b/dist/solid/PhoneIcon.d.ts index 3a27176..701de3b 100644 --- a/dist/solid/PhoneIcon.d.ts +++ b/dist/solid/PhoneIcon.d.ts @@ -6,6 +6,7 @@ interface IconProps extends React.SVGAttributes { /** * @name PhoneIcon * + * * @category outline * * @description @@ -20,5 +21,5 @@ interface IconProps extends React.SVGAttributes { * * @returns {JSX.Element} Componente SVG. */ -export declare const PhoneIcon: React.ForwardRefExoticComponent>; -export {}; +declare const PhoneIcon: React.ForwardRefExoticComponent>; +export { PhoneIcon }; diff --git a/dist/solid/PrinterIcon.d.ts b/dist/solid/PrinterIcon.d.ts index a624172..7c4b05a 100644 --- a/dist/solid/PrinterIcon.d.ts +++ b/dist/solid/PrinterIcon.d.ts @@ -6,6 +6,7 @@ interface IconProps extends React.SVGAttributes { /** * @name PrinterIcon * + * * @category outline * * @description @@ -20,5 +21,5 @@ interface IconProps extends React.SVGAttributes { * * @returns {JSX.Element} Componente SVG. */ -export declare const PrinterIcon: React.ForwardRefExoticComponent>; -export {}; +declare const PrinterIcon: React.ForwardRefExoticComponent>; +export { PrinterIcon }; diff --git a/dist/solid/index.d.ts b/dist/solid/index.d.ts index 7535b35..8e02013 100644 --- a/dist/solid/index.d.ts +++ b/dist/solid/index.d.ts @@ -2,7 +2,7 @@ export { BuildingOfficeIcon } from './BuildingOfficeIcon'; export { CheckCircleIcon } from './CheckCircleIcon'; export { DevicePhoneMobileIcon } from './DevicePhoneMobileIcon'; export { DocumentMinusIcon } from './DocumentMinusIcon'; -export { DocumentPlusIcon } from './DocumentPlusIcon'; +export { DocumentPlusIcon, DocumentPlusIcon as AddIcon } from './DocumentPlusIcon'; export { EnvelopeIcon } from './EnvelopeIcon'; export { GlobeAltIcon } from './GlobeAltIcon'; export { PencilSquareIcon } from './PencilSquareIcon'; diff --git a/dist/solid/index.js b/dist/solid/index.js index b0ae40d..9c8a038 100644 --- a/dist/solid/index.js +++ b/dist/solid/index.js @@ -1 +1 @@ -import*as e from"react";const a=e.forwardRef((({color:a="currentColor",...l},r)=>e.createElement("svg",{...l,ref:r,xmlns:"http://www.w3.org/2000/svg","aria-hidden":"true","data-slot":"icon",viewBox:"0 0 24 24",fill:"currentColor"},e.createElement("path",{fillRule:"evenodd",d:"M4.5 2.25a.75.75 0 0 0 0 1.5v16.5h-.75a.75.75 0 0 0 0 1.5h16.5a.75.75 0 0 0 0-1.5h-.75V3.75a.75.75 0 0 0 0-1.5h-15ZM9 6a.75.75 0 0 0 0 1.5h1.5a.75.75 0 0 0 0-1.5H9Zm-.75 3.75A.75.75 0 0 1 9 9h1.5a.75.75 0 0 1 0 1.5H9a.75.75 0 0 1-.75-.75ZM9 12a.75.75 0 0 0 0 1.5h1.5a.75.75 0 0 0 0-1.5H9Zm3.75-5.25A.75.75 0 0 1 13.5 6H15a.75.75 0 0 1 0 1.5h-1.5a.75.75 0 0 1-.75-.75ZM13.5 9a.75.75 0 0 0 0 1.5H15A.75.75 0 0 0 15 9h-1.5Zm-.75 3.75a.75.75 0 0 1 .75-.75H15a.75.75 0 0 1 0 1.5h-1.5a.75.75 0 0 1-.75-.75ZM9 19.5v-2.25a.75.75 0 0 1 .75-.75h4.5a.75.75 0 0 1 .75.75v2.25a.75.75 0 0 1-.75.75h-4.5A.75.75 0 0 1 9 19.5Z",clipRule:"evenodd"}))));a.displayName="BuildingOfficeIcon";const l=e.forwardRef((({color:a="currentColor",...l},r)=>e.createElement("svg",{...l,ref:r,xmlns:"http://www.w3.org/2000/svg","aria-hidden":"true","data-slot":"icon",viewBox:"0 0 24 24",fill:"currentColor"},e.createElement("path",{fillRule:"evenodd",d:"M2.25 12c0-5.385 4.365-9.75 9.75-9.75s9.75 4.365 9.75 9.75-4.365 9.75-9.75 9.75S2.25 17.385 2.25 12Zm13.36-1.814a.75.75 0 1 0-1.22-.872l-3.236 4.53L9.53 12.22a.75.75 0 0 0-1.06 1.06l2.25 2.25a.75.75 0 0 0 1.14-.094l3.75-5.25Z",clipRule:"evenodd"}))));l.displayName="CheckCircleIcon";const r=e.forwardRef((({color:a="currentColor",...l},r)=>e.createElement("svg",{...l,ref:r,xmlns:"http://www.w3.org/2000/svg","aria-hidden":"true","data-slot":"icon",viewBox:"0 0 24 24",fill:"currentColor"},e.createElement("path",{d:"M10.5 18.75a.75.75 0 0 0 0 1.5h3a.75.75 0 0 0 0-1.5h-3Z"}),e.createElement("path",{fillRule:"evenodd",d:"M8.625.75A3.375 3.375 0 0 0 5.25 4.125v15.75a3.375 3.375 0 0 0 3.375 3.375h6.75a3.375 3.375 0 0 0 3.375-3.375V4.125A3.375 3.375 0 0 0 15.375.75h-6.75ZM7.5 4.125C7.5 3.504 8.004 3 8.625 3H9.75v.375c0 .621.504 1.125 1.125 1.125h2.25c.621 0 1.125-.504 1.125-1.125V3h1.125c.621 0 1.125.504 1.125 1.125v15.75c0 .621-.504 1.125-1.125 1.125h-6.75A1.125 1.125 0 0 1 7.5 19.875V4.125Z",clipRule:"evenodd"}))));r.displayName="DevicePhoneMobileIcon";const o=e.forwardRef((({color:a="currentColor",...l},r)=>e.createElement("svg",{...l,ref:r,xmlns:"http://www.w3.org/2000/svg","aria-hidden":"true","data-slot":"icon",viewBox:"0 0 24 24",fill:"currentColor"},e.createElement("path",{fillRule:"evenodd",d:"M5.625 1.5H9a3.75 3.75 0 0 1 3.75 3.75v1.875c0 1.036.84 1.875 1.875 1.875H16.5a3.75 3.75 0 0 1 3.75 3.75v7.875c0 1.035-.84 1.875-1.875 1.875H5.625a1.875 1.875 0 0 1-1.875-1.875V3.375c0-1.036.84-1.875 1.875-1.875ZM9.75 14.25a.75.75 0 0 0 0 1.5H15a.75.75 0 0 0 0-1.5H9.75Z",clipRule:"evenodd"}),e.createElement("path",{d:"M14.25 5.25a5.23 5.23 0 0 0-1.279-3.434 9.768 9.768 0 0 1 6.963 6.963A5.23 5.23 0 0 0 16.5 7.5h-1.875a.375.375 0 0 1-.375-.375V5.25Z"}))));o.displayName="DocumentMinusIcon";const t=e.forwardRef((({color:a="currentColor",...l},r)=>e.createElement("svg",{...l,ref:r,xmlns:"http://www.w3.org/2000/svg","aria-hidden":"true","data-slot":"icon",viewBox:"0 0 24 24",fill:"currentColor"},e.createElement("path",{fillRule:"evenodd",d:"M5.625 1.5H9a3.75 3.75 0 0 1 3.75 3.75v1.875c0 1.036.84 1.875 1.875 1.875H16.5a3.75 3.75 0 0 1 3.75 3.75v7.875c0 1.035-.84 1.875-1.875 1.875H5.625a1.875 1.875 0 0 1-1.875-1.875V3.375c0-1.036.84-1.875 1.875-1.875ZM12.75 12a.75.75 0 0 0-1.5 0v2.25H9a.75.75 0 0 0 0 1.5h2.25V18a.75.75 0 0 0 1.5 0v-2.25H15a.75.75 0 0 0 0-1.5h-2.25V12Z",clipRule:"evenodd"}),e.createElement("path",{d:"M14.25 5.25a5.23 5.23 0 0 0-1.279-3.434 9.768 9.768 0 0 1 6.963 6.963A5.23 5.23 0 0 0 16.5 7.5h-1.875a.375.375 0 0 1-.375-.375V5.25Z"}))));t.displayName="DocumentPlusIcon";const c=e.forwardRef((({color:a="currentColor",...l},r)=>e.createElement("svg",{...l,ref:r,xmlns:"http://www.w3.org/2000/svg","aria-hidden":"true","data-slot":"icon",viewBox:"0 0 24 24",fill:"currentColor"},e.createElement("path",{d:"M1.5 8.67v8.58a3 3 0 0 0 3 3h15a3 3 0 0 0 3-3V8.67l-8.928 5.493a3 3 0 0 1-3.144 0L1.5 8.67Z"}),e.createElement("path",{d:"M22.5 6.908V6.75a3 3 0 0 0-3-3h-15a3 3 0 0 0-3 3v.158l9.714 5.978a1.5 1.5 0 0 0 1.572 0L22.5 6.908Z"}))));c.displayName="EnvelopeIcon";const n=e.forwardRef((({color:a="currentColor",...l},r)=>e.createElement("svg",{...l,ref:r,xmlns:"http://www.w3.org/2000/svg","aria-hidden":"true","data-slot":"icon",viewBox:"0 0 24 24",fill:"currentColor"},e.createElement("path",{d:"M21.721 12.752a9.711 9.711 0 0 0-.945-5.003 12.754 12.754 0 0 1-4.339 2.708 18.991 18.991 0 0 1-.214 4.772 17.165 17.165 0 0 0 5.498-2.477Zm-7.087 2.798a17.324 17.324 0 0 0 .332-4.647c-.952.227-1.945.347-2.966.347-1.021 0-2.014-.12-2.966-.347a17.515 17.515 0 0 0 .332 4.647 17.385 17.385 0 0 0 5.268 0Zm-4.862 1.569a18.963 18.963 0 0 0 4.456 0A17.182 17.182 0 0 1 12 21.724a17.18 17.18 0 0 1-2.228-4.605ZM7.777 15.23a18.87 18.87 0 0 1-.214-4.774 12.753 12.753 0 0 1-4.34-2.708 9.711 9.711 0 0 0-.944 5.004 17.165 17.165 0 0 0 5.498 2.477Zm13.579-.478a9.765 9.765 0 0 1-7.478 6.817 18.64 18.64 0 0 0 1.988-4.718 18.627 18.627 0 0 0 5.49-2.098Zm-18.712 0a18.619 18.619 0 0 0 5.49 2.099 18.64 18.64 0 0 0 1.988 4.718 9.765 9.765 0 0 1-7.478-6.816ZM13.878 2.43a9.755 9.755 0 0 1 6.116 3.986 11.267 11.267 0 0 1-3.746 2.504 18.63 18.63 0 0 0-2.37-6.49ZM12 2.276a17.152 17.152 0 0 1 2.805 7.121 11.281 11.281 0 0 1-5.61 0A17.151 17.151 0 0 1 12 2.276Zm-1.878.154a18.629 18.629 0 0 0-2.37 6.49 11.266 11.266 0 0 1-3.746-2.504 9.754 9.754 0 0 1 6.116-3.985Z"}))));n.displayName="GlobeAltIcon";const d=e.forwardRef((({color:a="currentColor",...l},r)=>e.createElement("svg",{...l,ref:r,xmlns:"http://www.w3.org/2000/svg","aria-hidden":"true","data-slot":"icon",viewBox:"0 0 24 24",fill:"currentColor"},e.createElement("path",{d:"M21.731 2.269a2.625 2.625 0 0 0-3.712 0l-1.157 1.157 3.712 3.712 1.157-1.157a2.625 2.625 0 0 0 0-3.712Zm-2.218 5.93-3.712-3.712-8.4 8.4a5.25 5.25 0 0 0-1.32 2.214l-.8 2.685a.75.75 0 0 0 .933.933l2.685-.8a5.25 5.25 0 0 0 2.214-1.32l8.4-8.4Z"}),e.createElement("path",{d:"M5.25 5.25a3 3 0 0 0-3 3v10.5a3 3 0 0 0 3 3h10.5a3 3 0 0 0 3-3V13.5a.75.75 0 0 0-1.5 0v5.25a1.5 1.5 0 0 1-1.5 1.5H5.25a1.5 1.5 0 0 1-1.5-1.5V8.25a1.5 1.5 0 0 1 1.5-1.5h5.25a.75.75 0 0 0 0-1.5H5.25Z"}))));d.displayName="PencilSquareIcon";const i=e.forwardRef((({color:a="currentColor",...l},r)=>e.createElement("svg",{...l,ref:r,xmlns:"http://www.w3.org/2000/svg","aria-hidden":"true","data-slot":"icon",viewBox:"0 0 24 24",fill:"currentColor"},e.createElement("path",{fillRule:"evenodd",d:"M1.5 4.5a3 3 0 0 1 3-3h1.372c.86 0 1.61.586 1.819 1.42l1.105 4.423a1.875 1.875 0 0 1-.694 1.955l-1.293.97c-.135.101-.164.249-.126.352a11.285 11.285 0 0 0 6.697 6.697c.103.038.25.009.352-.126l.97-1.293a1.875 1.875 0 0 1 1.955-.694l4.423 1.105c.834.209 1.42.959 1.42 1.82V19.5a3 3 0 0 1-3 3h-2.25C8.552 22.5 1.5 15.448 1.5 6.75V4.5Z",clipRule:"evenodd"}))));i.displayName="PhoneIcon";const h=e.forwardRef((({color:a="currentColor",...l},r)=>e.createElement("svg",{...l,ref:r,xmlns:"http://www.w3.org/2000/svg","aria-hidden":"true","data-slot":"icon",viewBox:"0 0 24 24",fill:"currentColor"},e.createElement("path",{fillRule:"evenodd",d:"M7.875 1.5C6.839 1.5 6 2.34 6 3.375v2.99c-.426.053-.851.11-1.274.174-1.454.218-2.476 1.483-2.476 2.917v6.294a3 3 0 0 0 3 3h.27l-.155 1.705A1.875 1.875 0 0 0 7.232 22.5h9.536a1.875 1.875 0 0 0 1.867-2.045l-.155-1.705h.27a3 3 0 0 0 3-3V9.456c0-1.434-1.022-2.7-2.476-2.917A48.716 48.716 0 0 0 18 6.366V3.375c0-1.036-.84-1.875-1.875-1.875h-8.25ZM16.5 6.205v-2.83A.375.375 0 0 0 16.125 3h-8.25a.375.375 0 0 0-.375.375v2.83a49.353 49.353 0 0 1 9 0Zm-.217 8.265c.178.018.317.16.333.337l.526 5.784a.375.375 0 0 1-.374.409H7.232a.375.375 0 0 1-.374-.409l.526-5.784a.373.373 0 0 1 .333-.337 41.741 41.741 0 0 1 8.566 0Zm.967-3.97a.75.75 0 0 1 .75-.75h.008a.75.75 0 0 1 .75.75v.008a.75.75 0 0 1-.75.75H18a.75.75 0 0 1-.75-.75V10.5ZM15 9.75a.75.75 0 0 0-.75.75v.008c0 .414.336.75.75.75h.008a.75.75 0 0 0 .75-.75V10.5a.75.75 0 0 0-.75-.75H15Z",clipRule:"evenodd"}))));h.displayName="PrinterIcon";export{a as BuildingOfficeIcon,l as CheckCircleIcon,r as DevicePhoneMobileIcon,o as DocumentMinusIcon,t as DocumentPlusIcon,c as EnvelopeIcon,n as GlobeAltIcon,d as PencilSquareIcon,i as PhoneIcon,h as PrinterIcon}; +import*as e from"react";const a=e.forwardRef((({color:a="currentColor",...l},r)=>e.createElement("svg",{...l,ref:r,xmlns:"http://www.w3.org/2000/svg","aria-hidden":"true","data-slot":"icon",viewBox:"0 0 24 24",fill:"currentColor"},e.createElement("path",{fillRule:"evenodd",d:"M4.5 2.25a.75.75 0 0 0 0 1.5v16.5h-.75a.75.75 0 0 0 0 1.5h16.5a.75.75 0 0 0 0-1.5h-.75V3.75a.75.75 0 0 0 0-1.5h-15ZM9 6a.75.75 0 0 0 0 1.5h1.5a.75.75 0 0 0 0-1.5H9Zm-.75 3.75A.75.75 0 0 1 9 9h1.5a.75.75 0 0 1 0 1.5H9a.75.75 0 0 1-.75-.75ZM9 12a.75.75 0 0 0 0 1.5h1.5a.75.75 0 0 0 0-1.5H9Zm3.75-5.25A.75.75 0 0 1 13.5 6H15a.75.75 0 0 1 0 1.5h-1.5a.75.75 0 0 1-.75-.75ZM13.5 9a.75.75 0 0 0 0 1.5H15A.75.75 0 0 0 15 9h-1.5Zm-.75 3.75a.75.75 0 0 1 .75-.75H15a.75.75 0 0 1 0 1.5h-1.5a.75.75 0 0 1-.75-.75ZM9 19.5v-2.25a.75.75 0 0 1 .75-.75h4.5a.75.75 0 0 1 .75.75v2.25a.75.75 0 0 1-.75.75h-4.5A.75.75 0 0 1 9 19.5Z",clipRule:"evenodd"}))));a.displayName="BuildingOfficeIcon";const l=e.forwardRef((({color:a="currentColor",...l},r)=>e.createElement("svg",{...l,ref:r,xmlns:"http://www.w3.org/2000/svg","aria-hidden":"true","data-slot":"icon",viewBox:"0 0 24 24",fill:"currentColor"},e.createElement("path",{fillRule:"evenodd",d:"M2.25 12c0-5.385 4.365-9.75 9.75-9.75s9.75 4.365 9.75 9.75-4.365 9.75-9.75 9.75S2.25 17.385 2.25 12Zm13.36-1.814a.75.75 0 1 0-1.22-.872l-3.236 4.53L9.53 12.22a.75.75 0 0 0-1.06 1.06l2.25 2.25a.75.75 0 0 0 1.14-.094l3.75-5.25Z",clipRule:"evenodd"}))));l.displayName="CheckCircleIcon";const r=e.forwardRef((({color:a="currentColor",...l},r)=>e.createElement("svg",{...l,ref:r,xmlns:"http://www.w3.org/2000/svg","aria-hidden":"true","data-slot":"icon",viewBox:"0 0 24 24",fill:"currentColor"},e.createElement("path",{d:"M10.5 18.75a.75.75 0 0 0 0 1.5h3a.75.75 0 0 0 0-1.5h-3Z"}),e.createElement("path",{fillRule:"evenodd",d:"M8.625.75A3.375 3.375 0 0 0 5.25 4.125v15.75a3.375 3.375 0 0 0 3.375 3.375h6.75a3.375 3.375 0 0 0 3.375-3.375V4.125A3.375 3.375 0 0 0 15.375.75h-6.75ZM7.5 4.125C7.5 3.504 8.004 3 8.625 3H9.75v.375c0 .621.504 1.125 1.125 1.125h2.25c.621 0 1.125-.504 1.125-1.125V3h1.125c.621 0 1.125.504 1.125 1.125v15.75c0 .621-.504 1.125-1.125 1.125h-6.75A1.125 1.125 0 0 1 7.5 19.875V4.125Z",clipRule:"evenodd"}))));r.displayName="DevicePhoneMobileIcon";const o=e.forwardRef((({color:a="currentColor",...l},r)=>e.createElement("svg",{...l,ref:r,xmlns:"http://www.w3.org/2000/svg","aria-hidden":"true","data-slot":"icon",viewBox:"0 0 24 24",fill:"currentColor"},e.createElement("path",{fillRule:"evenodd",d:"M5.625 1.5H9a3.75 3.75 0 0 1 3.75 3.75v1.875c0 1.036.84 1.875 1.875 1.875H16.5a3.75 3.75 0 0 1 3.75 3.75v7.875c0 1.035-.84 1.875-1.875 1.875H5.625a1.875 1.875 0 0 1-1.875-1.875V3.375c0-1.036.84-1.875 1.875-1.875ZM9.75 14.25a.75.75 0 0 0 0 1.5H15a.75.75 0 0 0 0-1.5H9.75Z",clipRule:"evenodd"}),e.createElement("path",{d:"M14.25 5.25a5.23 5.23 0 0 0-1.279-3.434 9.768 9.768 0 0 1 6.963 6.963A5.23 5.23 0 0 0 16.5 7.5h-1.875a.375.375 0 0 1-.375-.375V5.25Z"}))));o.displayName="DocumentMinusIcon";const t=e.forwardRef((({color:a="currentColor",...l},r)=>e.createElement("svg",{...l,ref:r,xmlns:"http://www.w3.org/2000/svg","aria-hidden":"true","data-slot":"icon",viewBox:"0 0 24 24",fill:"currentColor"},e.createElement("path",{fillRule:"evenodd",d:"M5.625 1.5H9a3.75 3.75 0 0 1 3.75 3.75v1.875c0 1.036.84 1.875 1.875 1.875H16.5a3.75 3.75 0 0 1 3.75 3.75v7.875c0 1.035-.84 1.875-1.875 1.875H5.625a1.875 1.875 0 0 1-1.875-1.875V3.375c0-1.036.84-1.875 1.875-1.875ZM12.75 12a.75.75 0 0 0-1.5 0v2.25H9a.75.75 0 0 0 0 1.5h2.25V18a.75.75 0 0 0 1.5 0v-2.25H15a.75.75 0 0 0 0-1.5h-2.25V12Z",clipRule:"evenodd"}),e.createElement("path",{d:"M14.25 5.25a5.23 5.23 0 0 0-1.279-3.434 9.768 9.768 0 0 1 6.963 6.963A5.23 5.23 0 0 0 16.5 7.5h-1.875a.375.375 0 0 1-.375-.375V5.25Z"}))));t.displayName="DocumentPlusIcon";const c=e.forwardRef((({color:a="currentColor",...l},r)=>e.createElement("svg",{...l,ref:r,xmlns:"http://www.w3.org/2000/svg","aria-hidden":"true","data-slot":"icon",viewBox:"0 0 24 24",fill:"currentColor"},e.createElement("path",{d:"M1.5 8.67v8.58a3 3 0 0 0 3 3h15a3 3 0 0 0 3-3V8.67l-8.928 5.493a3 3 0 0 1-3.144 0L1.5 8.67Z"}),e.createElement("path",{d:"M22.5 6.908V6.75a3 3 0 0 0-3-3h-15a3 3 0 0 0-3 3v.158l9.714 5.978a1.5 1.5 0 0 0 1.572 0L22.5 6.908Z"}))));c.displayName="EnvelopeIcon";const n=e.forwardRef((({color:a="currentColor",...l},r)=>e.createElement("svg",{...l,ref:r,xmlns:"http://www.w3.org/2000/svg","aria-hidden":"true","data-slot":"icon",viewBox:"0 0 24 24",fill:"currentColor"},e.createElement("path",{d:"M21.721 12.752a9.711 9.711 0 0 0-.945-5.003 12.754 12.754 0 0 1-4.339 2.708 18.991 18.991 0 0 1-.214 4.772 17.165 17.165 0 0 0 5.498-2.477Zm-7.087 2.798a17.324 17.324 0 0 0 .332-4.647c-.952.227-1.945.347-2.966.347-1.021 0-2.014-.12-2.966-.347a17.515 17.515 0 0 0 .332 4.647 17.385 17.385 0 0 0 5.268 0Zm-4.862 1.569a18.963 18.963 0 0 0 4.456 0A17.182 17.182 0 0 1 12 21.724a17.18 17.18 0 0 1-2.228-4.605ZM7.777 15.23a18.87 18.87 0 0 1-.214-4.774 12.753 12.753 0 0 1-4.34-2.708 9.711 9.711 0 0 0-.944 5.004 17.165 17.165 0 0 0 5.498 2.477Zm13.579-.478a9.765 9.765 0 0 1-7.478 6.817 18.64 18.64 0 0 0 1.988-4.718 18.627 18.627 0 0 0 5.49-2.098Zm-18.712 0a18.619 18.619 0 0 0 5.49 2.099 18.64 18.64 0 0 0 1.988 4.718 9.765 9.765 0 0 1-7.478-6.816ZM13.878 2.43a9.755 9.755 0 0 1 6.116 3.986 11.267 11.267 0 0 1-3.746 2.504 18.63 18.63 0 0 0-2.37-6.49ZM12 2.276a17.152 17.152 0 0 1 2.805 7.121 11.281 11.281 0 0 1-5.61 0A17.151 17.151 0 0 1 12 2.276Zm-1.878.154a18.629 18.629 0 0 0-2.37 6.49 11.266 11.266 0 0 1-3.746-2.504 9.754 9.754 0 0 1 6.116-3.985Z"}))));n.displayName="GlobeAltIcon";const d=e.forwardRef((({color:a="currentColor",...l},r)=>e.createElement("svg",{...l,ref:r,xmlns:"http://www.w3.org/2000/svg","aria-hidden":"true","data-slot":"icon",viewBox:"0 0 24 24",fill:"currentColor"},e.createElement("path",{d:"M21.731 2.269a2.625 2.625 0 0 0-3.712 0l-1.157 1.157 3.712 3.712 1.157-1.157a2.625 2.625 0 0 0 0-3.712Zm-2.218 5.93-3.712-3.712-8.4 8.4a5.25 5.25 0 0 0-1.32 2.214l-.8 2.685a.75.75 0 0 0 .933.933l2.685-.8a5.25 5.25 0 0 0 2.214-1.32l8.4-8.4Z"}),e.createElement("path",{d:"M5.25 5.25a3 3 0 0 0-3 3v10.5a3 3 0 0 0 3 3h10.5a3 3 0 0 0 3-3V13.5a.75.75 0 0 0-1.5 0v5.25a1.5 1.5 0 0 1-1.5 1.5H5.25a1.5 1.5 0 0 1-1.5-1.5V8.25a1.5 1.5 0 0 1 1.5-1.5h5.25a.75.75 0 0 0 0-1.5H5.25Z"}))));d.displayName="PencilSquareIcon";const i=e.forwardRef((({color:a="currentColor",...l},r)=>e.createElement("svg",{...l,ref:r,xmlns:"http://www.w3.org/2000/svg","aria-hidden":"true","data-slot":"icon",viewBox:"0 0 24 24",fill:"currentColor"},e.createElement("path",{fillRule:"evenodd",d:"M1.5 4.5a3 3 0 0 1 3-3h1.372c.86 0 1.61.586 1.819 1.42l1.105 4.423a1.875 1.875 0 0 1-.694 1.955l-1.293.97c-.135.101-.164.249-.126.352a11.285 11.285 0 0 0 6.697 6.697c.103.038.25.009.352-.126l.97-1.293a1.875 1.875 0 0 1 1.955-.694l4.423 1.105c.834.209 1.42.959 1.42 1.82V19.5a3 3 0 0 1-3 3h-2.25C8.552 22.5 1.5 15.448 1.5 6.75V4.5Z",clipRule:"evenodd"}))));i.displayName="PhoneIcon";const h=e.forwardRef((({color:a="currentColor",...l},r)=>e.createElement("svg",{...l,ref:r,xmlns:"http://www.w3.org/2000/svg","aria-hidden":"true","data-slot":"icon",viewBox:"0 0 24 24",fill:"currentColor"},e.createElement("path",{fillRule:"evenodd",d:"M7.875 1.5C6.839 1.5 6 2.34 6 3.375v2.99c-.426.053-.851.11-1.274.174-1.454.218-2.476 1.483-2.476 2.917v6.294a3 3 0 0 0 3 3h.27l-.155 1.705A1.875 1.875 0 0 0 7.232 22.5h9.536a1.875 1.875 0 0 0 1.867-2.045l-.155-1.705h.27a3 3 0 0 0 3-3V9.456c0-1.434-1.022-2.7-2.476-2.917A48.716 48.716 0 0 0 18 6.366V3.375c0-1.036-.84-1.875-1.875-1.875h-8.25ZM16.5 6.205v-2.83A.375.375 0 0 0 16.125 3h-8.25a.375.375 0 0 0-.375.375v2.83a49.353 49.353 0 0 1 9 0Zm-.217 8.265c.178.018.317.16.333.337l.526 5.784a.375.375 0 0 1-.374.409H7.232a.375.375 0 0 1-.374-.409l.526-5.784a.373.373 0 0 1 .333-.337 41.741 41.741 0 0 1 8.566 0Zm.967-3.97a.75.75 0 0 1 .75-.75h.008a.75.75 0 0 1 .75.75v.008a.75.75 0 0 1-.75.75H18a.75.75 0 0 1-.75-.75V10.5ZM15 9.75a.75.75 0 0 0-.75.75v.008c0 .414.336.75.75.75h.008a.75.75 0 0 0 .75-.75V10.5a.75.75 0 0 0-.75-.75H15Z",clipRule:"evenodd"}))));h.displayName="PrinterIcon";export{t as AddIcon,a as BuildingOfficeIcon,l as CheckCircleIcon,r as DevicePhoneMobileIcon,o as DocumentMinusIcon,t as DocumentPlusIcon,c as EnvelopeIcon,n as GlobeAltIcon,d as PencilSquareIcon,i as PhoneIcon,h as PrinterIcon}; diff --git a/package.json b/package.json index 0bb6e3b..630912b 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "via-icons", - "version": "1.0.8", + "version": "1.0.9", "description": "", "type": "module", "sideEffects": false, diff --git a/scripts/generateIcons.js b/scripts/generateIcons.js index 7dcfcbb..068d32f 100644 --- a/scripts/generateIcons.js +++ b/scripts/generateIcons.js @@ -24,8 +24,14 @@ const generateIconComponent = ( svgContent, description = "", usage = [], - isDeprecated = false -) => ` + isDeprecated = false, + aliases = [] +) => { + const aliasExport = aliases.length + ? `, ${aliases.map((alias) => `${name}Icon as ${alias}Icon`).join(", ")}` + : ""; + + return ` import * as React from 'react'; interface IconProps extends React.SVGAttributes { @@ -35,6 +41,11 @@ interface IconProps extends React.SVGAttributes { /** * @name ${name}Icon + * ${ + aliases.length + ? `* @alias ${aliases.map((alias) => alias + "Icon").join(", ")}` + : "" + } * * @category ${usage.length ? "solid" : "outline"} * @@ -50,7 +61,7 @@ interface IconProps extends React.SVGAttributes { * * @returns {JSX.Element} Componente SVG. */ -export const ${name}Icon = React.forwardRef( +const ${name}Icon = React.forwardRef( ({ color = 'currentColor', ...props }, forwardedRef) => { return ( ${mapSvgAttributes(svgContent).replace( @@ -62,11 +73,23 @@ export const ${name}Icon = React.forwardRef( ); ${name}Icon.displayName = '${name}Icon'; + +export { ${name}Icon${aliasExport} }; `; +}; const generateIndexFile = (components, iconType) => { const exports = components - .map((name) => `export { ${name}Icon } from './${name}Icon';`) + .map( + ({ name, aliases }) => + `export { ${name}Icon${ + aliases.length + ? `, ${aliases + .map((alias) => `${name}Icon as ${alias}Icon`) + .join(", ")}` + : "" + } } from './${name}Icon';` + ) .join("\n"); const indexPath = path.resolve(__dirname, `../src/${iconType}/index.ts`); fs.writeFileSync(indexPath, exports, "utf-8"); @@ -102,13 +125,16 @@ const processIcons = async (iconType) => { ); } - components.push(componentName); + const aliases = metadata && metadata.aliases ? metadata.aliases : []; + + components.push({ name: componentName, aliases }); const componentContent = generateIconComponent( componentName, data, metadata ? metadata.description : "", metadata ? metadata.usage : [], - isDeprecated + isDeprecated, + aliases ); const componentPath = path.resolve( diff --git a/scripts/iconMetadata.json b/scripts/iconMetadata.json index 814ed11..a46d0cb 100644 --- a/scripts/iconMetadata.json +++ b/scripts/iconMetadata.json @@ -1,6 +1,7 @@ { "DocumentPlus": { "description": "El ícono DocumentPlus representa la acción de agregar un nuevo documento. Visualmente, muestra un documento con un símbolo de más (+).", + "aliases": ["Add"], "usage": [ "Botones para permitir a los usuarios agregar nuevos registros.", "Enlaces para destacar la opción de agregar contenido.", diff --git a/src/outline/BuildingOfficeIcon.tsx b/src/outline/BuildingOfficeIcon.tsx index 099c62e..29e2d83 100644 --- a/src/outline/BuildingOfficeIcon.tsx +++ b/src/outline/BuildingOfficeIcon.tsx @@ -8,6 +8,7 @@ interface IconProps extends React.SVGAttributes { /** * @name BuildingOfficeIcon + * * * @category outline * @@ -23,7 +24,7 @@ interface IconProps extends React.SVGAttributes { * * @returns {JSX.Element} Componente SVG. */ -export const BuildingOfficeIcon = React.forwardRef( +const BuildingOfficeIcon = React.forwardRef( ({ color = 'currentColor', ...props }, forwardedRef) => { return ( @@ -32,3 +33,5 @@ export const BuildingOfficeIcon = React.forwardRef( ); BuildingOfficeIcon.displayName = 'BuildingOfficeIcon'; + +export { BuildingOfficeIcon }; diff --git a/src/outline/CheckCircleIcon.tsx b/src/outline/CheckCircleIcon.tsx index 0b53b1e..df35a53 100644 --- a/src/outline/CheckCircleIcon.tsx +++ b/src/outline/CheckCircleIcon.tsx @@ -8,6 +8,7 @@ interface IconProps extends React.SVGAttributes { /** * @name CheckCircleIcon + * * * @category outline * @@ -23,7 +24,7 @@ interface IconProps extends React.SVGAttributes { * * @returns {JSX.Element} Componente SVG. */ -export const CheckCircleIcon = React.forwardRef( +const CheckCircleIcon = React.forwardRef( ({ color = 'currentColor', ...props }, forwardedRef) => { return ( @@ -32,3 +33,5 @@ export const CheckCircleIcon = React.forwardRef( ); CheckCircleIcon.displayName = 'CheckCircleIcon'; + +export { CheckCircleIcon }; diff --git a/src/outline/DevicePhoneMobileIcon.tsx b/src/outline/DevicePhoneMobileIcon.tsx index fb7f520..dc10e48 100644 --- a/src/outline/DevicePhoneMobileIcon.tsx +++ b/src/outline/DevicePhoneMobileIcon.tsx @@ -8,6 +8,7 @@ interface IconProps extends React.SVGAttributes { /** * @name DevicePhoneMobileIcon + * * * @category outline * @@ -23,7 +24,7 @@ interface IconProps extends React.SVGAttributes { * * @returns {JSX.Element} Componente SVG. */ -export const DevicePhoneMobileIcon = React.forwardRef( +const DevicePhoneMobileIcon = React.forwardRef( ({ color = 'currentColor', ...props }, forwardedRef) => { return ( @@ -32,3 +33,5 @@ export const DevicePhoneMobileIcon = React.forwardRef( ); DevicePhoneMobileIcon.displayName = 'DevicePhoneMobileIcon'; + +export { DevicePhoneMobileIcon }; diff --git a/src/outline/DocumentMinusIcon.tsx b/src/outline/DocumentMinusIcon.tsx index 223e843..c790aae 100644 --- a/src/outline/DocumentMinusIcon.tsx +++ b/src/outline/DocumentMinusIcon.tsx @@ -8,6 +8,7 @@ interface IconProps extends React.SVGAttributes { /** * @name DocumentMinusIcon + * * * @category outline * @@ -23,7 +24,7 @@ interface IconProps extends React.SVGAttributes { * * @returns {JSX.Element} Componente SVG. */ -export const DocumentMinusIcon = React.forwardRef( +const DocumentMinusIcon = React.forwardRef( ({ color = 'currentColor', ...props }, forwardedRef) => { return ( @@ -32,3 +33,5 @@ export const DocumentMinusIcon = React.forwardRef( ); DocumentMinusIcon.displayName = 'DocumentMinusIcon'; + +export { DocumentMinusIcon }; diff --git a/src/outline/DocumentPlusIcon.tsx b/src/outline/DocumentPlusIcon.tsx index 5f32e0e..8875146 100644 --- a/src/outline/DocumentPlusIcon.tsx +++ b/src/outline/DocumentPlusIcon.tsx @@ -8,6 +8,7 @@ interface IconProps extends React.SVGAttributes { /** * @name DocumentPlusIcon + * * @alias AddIcon * * @category solid * @@ -25,7 +26,7 @@ interface IconProps extends React.SVGAttributes { * * @returns {JSX.Element} Componente SVG. */ -export const DocumentPlusIcon = React.forwardRef( +const DocumentPlusIcon = React.forwardRef( ({ color = 'currentColor', ...props }, forwardedRef) => { return ( @@ -34,3 +35,5 @@ export const DocumentPlusIcon = React.forwardRef( ); DocumentPlusIcon.displayName = 'DocumentPlusIcon'; + +export { DocumentPlusIcon, DocumentPlusIcon as AddIcon }; diff --git a/src/outline/EnvelopeIcon.tsx b/src/outline/EnvelopeIcon.tsx index 62ecd45..43ff80d 100644 --- a/src/outline/EnvelopeIcon.tsx +++ b/src/outline/EnvelopeIcon.tsx @@ -8,6 +8,7 @@ interface IconProps extends React.SVGAttributes { /** * @name EnvelopeIcon + * * * @category outline * @@ -23,7 +24,7 @@ interface IconProps extends React.SVGAttributes { * * @returns {JSX.Element} Componente SVG. */ -export const EnvelopeIcon = React.forwardRef( +const EnvelopeIcon = React.forwardRef( ({ color = 'currentColor', ...props }, forwardedRef) => { return ( @@ -32,3 +33,5 @@ export const EnvelopeIcon = React.forwardRef( ); EnvelopeIcon.displayName = 'EnvelopeIcon'; + +export { EnvelopeIcon }; diff --git a/src/outline/GlobeAltIcon.tsx b/src/outline/GlobeAltIcon.tsx index a96010c..e3f881e 100644 --- a/src/outline/GlobeAltIcon.tsx +++ b/src/outline/GlobeAltIcon.tsx @@ -8,6 +8,7 @@ interface IconProps extends React.SVGAttributes { /** * @name GlobeAltIcon + * * * @category outline * @@ -23,7 +24,7 @@ interface IconProps extends React.SVGAttributes { * * @returns {JSX.Element} Componente SVG. */ -export const GlobeAltIcon = React.forwardRef( +const GlobeAltIcon = React.forwardRef( ({ color = 'currentColor', ...props }, forwardedRef) => { return ( @@ -32,3 +33,5 @@ export const GlobeAltIcon = React.forwardRef( ); GlobeAltIcon.displayName = 'GlobeAltIcon'; + +export { GlobeAltIcon }; diff --git a/src/outline/PencilSquareIcon.tsx b/src/outline/PencilSquareIcon.tsx index c501c4d..051f5fe 100644 --- a/src/outline/PencilSquareIcon.tsx +++ b/src/outline/PencilSquareIcon.tsx @@ -8,6 +8,7 @@ interface IconProps extends React.SVGAttributes { /** * @name PencilSquareIcon + * * * @category outline * @@ -23,7 +24,7 @@ interface IconProps extends React.SVGAttributes { * * @returns {JSX.Element} Componente SVG. */ -export const PencilSquareIcon = React.forwardRef( +const PencilSquareIcon = React.forwardRef( ({ color = 'currentColor', ...props }, forwardedRef) => { return ( @@ -32,3 +33,5 @@ export const PencilSquareIcon = React.forwardRef( ); PencilSquareIcon.displayName = 'PencilSquareIcon'; + +export { PencilSquareIcon }; diff --git a/src/outline/PhoneIcon.tsx b/src/outline/PhoneIcon.tsx index 0737221..41fd881 100644 --- a/src/outline/PhoneIcon.tsx +++ b/src/outline/PhoneIcon.tsx @@ -8,6 +8,7 @@ interface IconProps extends React.SVGAttributes { /** * @name PhoneIcon + * * * @category outline * @@ -23,7 +24,7 @@ interface IconProps extends React.SVGAttributes { * * @returns {JSX.Element} Componente SVG. */ -export const PhoneIcon = React.forwardRef( +const PhoneIcon = React.forwardRef( ({ color = 'currentColor', ...props }, forwardedRef) => { return ( @@ -32,3 +33,5 @@ export const PhoneIcon = React.forwardRef( ); PhoneIcon.displayName = 'PhoneIcon'; + +export { PhoneIcon }; diff --git a/src/outline/PrinterIcon.tsx b/src/outline/PrinterIcon.tsx index 4c8f568..fc0f0d7 100644 --- a/src/outline/PrinterIcon.tsx +++ b/src/outline/PrinterIcon.tsx @@ -8,6 +8,7 @@ interface IconProps extends React.SVGAttributes { /** * @name PrinterIcon + * * * @category outline * @@ -23,7 +24,7 @@ interface IconProps extends React.SVGAttributes { * * @returns {JSX.Element} Componente SVG. */ -export const PrinterIcon = React.forwardRef( +const PrinterIcon = React.forwardRef( ({ color = 'currentColor', ...props }, forwardedRef) => { return ( @@ -32,3 +33,5 @@ export const PrinterIcon = React.forwardRef( ); PrinterIcon.displayName = 'PrinterIcon'; + +export { PrinterIcon }; diff --git a/src/outline/index.ts b/src/outline/index.ts index df9447b..9cffff3 100644 --- a/src/outline/index.ts +++ b/src/outline/index.ts @@ -2,7 +2,7 @@ export { BuildingOfficeIcon } from './BuildingOfficeIcon'; export { CheckCircleIcon } from './CheckCircleIcon'; export { DevicePhoneMobileIcon } from './DevicePhoneMobileIcon'; export { DocumentMinusIcon } from './DocumentMinusIcon'; -export { DocumentPlusIcon } from './DocumentPlusIcon'; +export { DocumentPlusIcon, DocumentPlusIcon as AddIcon } from './DocumentPlusIcon'; export { EnvelopeIcon } from './EnvelopeIcon'; export { GlobeAltIcon } from './GlobeAltIcon'; export { PencilSquareIcon } from './PencilSquareIcon'; diff --git a/src/solid/BuildingOfficeIcon.tsx b/src/solid/BuildingOfficeIcon.tsx index a945a1c..1109bc0 100644 --- a/src/solid/BuildingOfficeIcon.tsx +++ b/src/solid/BuildingOfficeIcon.tsx @@ -8,6 +8,7 @@ interface IconProps extends React.SVGAttributes { /** * @name BuildingOfficeIcon + * * * @category outline * @@ -23,7 +24,7 @@ interface IconProps extends React.SVGAttributes { * * @returns {JSX.Element} Componente SVG. */ -export const BuildingOfficeIcon = React.forwardRef( +const BuildingOfficeIcon = React.forwardRef( ({ color = 'currentColor', ...props }, forwardedRef) => { return ( @@ -32,3 +33,5 @@ export const BuildingOfficeIcon = React.forwardRef( ); BuildingOfficeIcon.displayName = 'BuildingOfficeIcon'; + +export { BuildingOfficeIcon }; diff --git a/src/solid/CheckCircleIcon.tsx b/src/solid/CheckCircleIcon.tsx index d40c88e..96efea4 100644 --- a/src/solid/CheckCircleIcon.tsx +++ b/src/solid/CheckCircleIcon.tsx @@ -8,6 +8,7 @@ interface IconProps extends React.SVGAttributes { /** * @name CheckCircleIcon + * * * @category outline * @@ -23,7 +24,7 @@ interface IconProps extends React.SVGAttributes { * * @returns {JSX.Element} Componente SVG. */ -export const CheckCircleIcon = React.forwardRef( +const CheckCircleIcon = React.forwardRef( ({ color = 'currentColor', ...props }, forwardedRef) => { return ( @@ -32,3 +33,5 @@ export const CheckCircleIcon = React.forwardRef( ); CheckCircleIcon.displayName = 'CheckCircleIcon'; + +export { CheckCircleIcon }; diff --git a/src/solid/DevicePhoneMobileIcon.tsx b/src/solid/DevicePhoneMobileIcon.tsx index 2591e31..184ec80 100644 --- a/src/solid/DevicePhoneMobileIcon.tsx +++ b/src/solid/DevicePhoneMobileIcon.tsx @@ -8,6 +8,7 @@ interface IconProps extends React.SVGAttributes { /** * @name DevicePhoneMobileIcon + * * * @category outline * @@ -23,7 +24,7 @@ interface IconProps extends React.SVGAttributes { * * @returns {JSX.Element} Componente SVG. */ -export const DevicePhoneMobileIcon = React.forwardRef( +const DevicePhoneMobileIcon = React.forwardRef( ({ color = 'currentColor', ...props }, forwardedRef) => { return ( @@ -32,3 +33,5 @@ export const DevicePhoneMobileIcon = React.forwardRef( ); DevicePhoneMobileIcon.displayName = 'DevicePhoneMobileIcon'; + +export { DevicePhoneMobileIcon }; diff --git a/src/solid/DocumentMinusIcon.tsx b/src/solid/DocumentMinusIcon.tsx index da4112d..51dc61c 100644 --- a/src/solid/DocumentMinusIcon.tsx +++ b/src/solid/DocumentMinusIcon.tsx @@ -8,6 +8,7 @@ interface IconProps extends React.SVGAttributes { /** * @name DocumentMinusIcon + * * * @category outline * @@ -23,7 +24,7 @@ interface IconProps extends React.SVGAttributes { * * @returns {JSX.Element} Componente SVG. */ -export const DocumentMinusIcon = React.forwardRef( +const DocumentMinusIcon = React.forwardRef( ({ color = 'currentColor', ...props }, forwardedRef) => { return ( @@ -32,3 +33,5 @@ export const DocumentMinusIcon = React.forwardRef( ); DocumentMinusIcon.displayName = 'DocumentMinusIcon'; + +export { DocumentMinusIcon }; diff --git a/src/solid/DocumentPlusIcon.tsx b/src/solid/DocumentPlusIcon.tsx index 69db48a..7c30de9 100644 --- a/src/solid/DocumentPlusIcon.tsx +++ b/src/solid/DocumentPlusIcon.tsx @@ -8,6 +8,7 @@ interface IconProps extends React.SVGAttributes { /** * @name DocumentPlusIcon + * * @alias AddIcon * * @category solid * @@ -25,7 +26,7 @@ interface IconProps extends React.SVGAttributes { * * @returns {JSX.Element} Componente SVG. */ -export const DocumentPlusIcon = React.forwardRef( +const DocumentPlusIcon = React.forwardRef( ({ color = 'currentColor', ...props }, forwardedRef) => { return ( @@ -34,3 +35,5 @@ export const DocumentPlusIcon = React.forwardRef( ); DocumentPlusIcon.displayName = 'DocumentPlusIcon'; + +export { DocumentPlusIcon, DocumentPlusIcon as AddIcon }; diff --git a/src/solid/EnvelopeIcon.tsx b/src/solid/EnvelopeIcon.tsx index 1566918..5969f7a 100644 --- a/src/solid/EnvelopeIcon.tsx +++ b/src/solid/EnvelopeIcon.tsx @@ -8,6 +8,7 @@ interface IconProps extends React.SVGAttributes { /** * @name EnvelopeIcon + * * * @category outline * @@ -23,7 +24,7 @@ interface IconProps extends React.SVGAttributes { * * @returns {JSX.Element} Componente SVG. */ -export const EnvelopeIcon = React.forwardRef( +const EnvelopeIcon = React.forwardRef( ({ color = 'currentColor', ...props }, forwardedRef) => { return ( @@ -32,3 +33,5 @@ export const EnvelopeIcon = React.forwardRef( ); EnvelopeIcon.displayName = 'EnvelopeIcon'; + +export { EnvelopeIcon }; diff --git a/src/solid/GlobeAltIcon.tsx b/src/solid/GlobeAltIcon.tsx index 5889e15..6417ca0 100644 --- a/src/solid/GlobeAltIcon.tsx +++ b/src/solid/GlobeAltIcon.tsx @@ -8,6 +8,7 @@ interface IconProps extends React.SVGAttributes { /** * @name GlobeAltIcon + * * * @category outline * @@ -23,7 +24,7 @@ interface IconProps extends React.SVGAttributes { * * @returns {JSX.Element} Componente SVG. */ -export const GlobeAltIcon = React.forwardRef( +const GlobeAltIcon = React.forwardRef( ({ color = 'currentColor', ...props }, forwardedRef) => { return ( @@ -32,3 +33,5 @@ export const GlobeAltIcon = React.forwardRef( ); GlobeAltIcon.displayName = 'GlobeAltIcon'; + +export { GlobeAltIcon }; diff --git a/src/solid/PencilSquareIcon.tsx b/src/solid/PencilSquareIcon.tsx index 8b747d9..325137e 100644 --- a/src/solid/PencilSquareIcon.tsx +++ b/src/solid/PencilSquareIcon.tsx @@ -8,6 +8,7 @@ interface IconProps extends React.SVGAttributes { /** * @name PencilSquareIcon + * * * @category outline * @@ -23,7 +24,7 @@ interface IconProps extends React.SVGAttributes { * * @returns {JSX.Element} Componente SVG. */ -export const PencilSquareIcon = React.forwardRef( +const PencilSquareIcon = React.forwardRef( ({ color = 'currentColor', ...props }, forwardedRef) => { return ( @@ -32,3 +33,5 @@ export const PencilSquareIcon = React.forwardRef( ); PencilSquareIcon.displayName = 'PencilSquareIcon'; + +export { PencilSquareIcon }; diff --git a/src/solid/PhoneIcon.tsx b/src/solid/PhoneIcon.tsx index 5df9a93..d6e8781 100644 --- a/src/solid/PhoneIcon.tsx +++ b/src/solid/PhoneIcon.tsx @@ -8,6 +8,7 @@ interface IconProps extends React.SVGAttributes { /** * @name PhoneIcon + * * * @category outline * @@ -23,7 +24,7 @@ interface IconProps extends React.SVGAttributes { * * @returns {JSX.Element} Componente SVG. */ -export const PhoneIcon = React.forwardRef( +const PhoneIcon = React.forwardRef( ({ color = 'currentColor', ...props }, forwardedRef) => { return ( @@ -32,3 +33,5 @@ export const PhoneIcon = React.forwardRef( ); PhoneIcon.displayName = 'PhoneIcon'; + +export { PhoneIcon }; diff --git a/src/solid/PrinterIcon.tsx b/src/solid/PrinterIcon.tsx index 3d748cf..4726c86 100644 --- a/src/solid/PrinterIcon.tsx +++ b/src/solid/PrinterIcon.tsx @@ -8,6 +8,7 @@ interface IconProps extends React.SVGAttributes { /** * @name PrinterIcon + * * * @category outline * @@ -23,7 +24,7 @@ interface IconProps extends React.SVGAttributes { * * @returns {JSX.Element} Componente SVG. */ -export const PrinterIcon = React.forwardRef( +const PrinterIcon = React.forwardRef( ({ color = 'currentColor', ...props }, forwardedRef) => { return ( @@ -32,3 +33,5 @@ export const PrinterIcon = React.forwardRef( ); PrinterIcon.displayName = 'PrinterIcon'; + +export { PrinterIcon }; diff --git a/src/solid/index.ts b/src/solid/index.ts index df9447b..9cffff3 100644 --- a/src/solid/index.ts +++ b/src/solid/index.ts @@ -2,7 +2,7 @@ export { BuildingOfficeIcon } from './BuildingOfficeIcon'; export { CheckCircleIcon } from './CheckCircleIcon'; export { DevicePhoneMobileIcon } from './DevicePhoneMobileIcon'; export { DocumentMinusIcon } from './DocumentMinusIcon'; -export { DocumentPlusIcon } from './DocumentPlusIcon'; +export { DocumentPlusIcon, DocumentPlusIcon as AddIcon } from './DocumentPlusIcon'; export { EnvelopeIcon } from './EnvelopeIcon'; export { GlobeAltIcon } from './GlobeAltIcon'; export { PencilSquareIcon } from './PencilSquareIcon'; diff --git a/webpack.config.js b/webpack.config.js deleted file mode 100644 index 6948715..0000000 --- a/webpack.config.js +++ /dev/null @@ -1,6 +0,0 @@ -// Whilst the configuration object can be modified here, the recommended way of making -// changes is via the presets' options or Neutrino's API in `.neutrinorc.js` instead. -// Neutrino's inspect feature can be used to view/export the generated configuration. -const neutrino = require('neutrino') - -module.exports = neutrino().webpack()