v1.0.7
This commit is contained in:
parent
3e7bed3029
commit
7ccdff632d
20
dist/solid/index.d.ts
vendored
20
dist/solid/index.d.ts
vendored
@ -1,10 +1,10 @@
|
|||||||
export { BuildingOfficeIcon } from "./BuildingOfficeIcon";
|
export { BuildingOfficeIcon } from './BuildingOfficeIcon';
|
||||||
export { CheckCircleIcon } from "./CheckCircleIcon";
|
export { CheckCircleIcon } from './CheckCircleIcon';
|
||||||
export { DevicePhoneMobileIcon } from "./DevicePhoneMobileIcon";
|
export { DevicePhoneMobileIcon } from './DevicePhoneMobileIcon';
|
||||||
export { DocumentMinusIcon } from "./DocumentMinusIcon";
|
export { DocumentMinusIcon } from './DocumentMinusIcon';
|
||||||
export { DocumentPlusIcon } from "./DocumentPlusIcon";
|
export { DocumentPlusIcon } from './DocumentPlusIcon';
|
||||||
export { EnvelopeIcon } from "./EnvelopeIcon";
|
export { EnvelopeIcon } from './EnvelopeIcon';
|
||||||
export { GlobeAltIcon } from "./GlobeAltIcon";
|
export { GlobeAltIcon } from './GlobeAltIcon';
|
||||||
export { PencilSquareIcon } from "./PencilSquareIcon";
|
export { PencilSquareIcon } from './PencilSquareIcon';
|
||||||
export { PhoneIcon } from "./PhoneIcon";
|
export { PhoneIcon } from './PhoneIcon';
|
||||||
export { PrinterIcon } from "./PrinterIcon";
|
export { PrinterIcon } from './PrinterIcon';
|
||||||
|
2
dist/solid/index.js
vendored
2
dist/solid/index.js
vendored
File diff suppressed because one or more lines are too long
@ -1,6 +1,6 @@
|
|||||||
{
|
{
|
||||||
"name": "via-icons",
|
"name": "via-icons",
|
||||||
"version": "1.0.6",
|
"version": "1.0.7",
|
||||||
"description": "",
|
"description": "",
|
||||||
"type": "module",
|
"type": "module",
|
||||||
"sideEffects": false,
|
"sideEffects": false,
|
||||||
|
@ -19,6 +19,12 @@ const svgoConfig = {
|
|||||||
const iconMetadataPath = path.resolve(__dirname, "./iconMetadata.json");
|
const iconMetadataPath = path.resolve(__dirname, "./iconMetadata.json");
|
||||||
const iconMetadata = JSON.parse(fs.readFileSync(iconMetadataPath, "utf-8"));
|
const iconMetadata = JSON.parse(fs.readFileSync(iconMetadataPath, "utf-8"));
|
||||||
|
|
||||||
|
const mapSvgAttributes = (svgContent) => {
|
||||||
|
return svgContent
|
||||||
|
.replace(/fill-rule/g, "fillRule")
|
||||||
|
.replace(/clip-rule/g, "clipRule");
|
||||||
|
};
|
||||||
|
|
||||||
const generateIconComponent = (
|
const generateIconComponent = (
|
||||||
name,
|
name,
|
||||||
svgContent,
|
svgContent,
|
||||||
@ -41,7 +47,10 @@ interface IconProps extends React.SVGAttributes<SVGElement> {
|
|||||||
export const ${name}Icon = React.forwardRef<SVGSVGElement, IconProps>(
|
export const ${name}Icon = React.forwardRef<SVGSVGElement, IconProps>(
|
||||||
({ color = 'currentColor', ...props }, forwardedRef) => {
|
({ color = 'currentColor', ...props }, forwardedRef) => {
|
||||||
return (
|
return (
|
||||||
${svgContent.replace("<svg", "<svg {...props} ref={forwardedRef}")}
|
${mapSvgAttributes(svgContent).replace(
|
||||||
|
"<svg",
|
||||||
|
"<svg {...props} ref={forwardedRef}"
|
||||||
|
)}
|
||||||
);
|
);
|
||||||
}
|
}
|
||||||
);
|
);
|
||||||
|
@ -15,7 +15,7 @@ interface IconProps extends React.SVGAttributes<SVGElement> {
|
|||||||
export const BuildingOfficeIcon = React.forwardRef<SVGSVGElement, IconProps>(
|
export const BuildingOfficeIcon = React.forwardRef<SVGSVGElement, IconProps>(
|
||||||
({ color = 'currentColor', ...props }, forwardedRef) => {
|
({ color = 'currentColor', ...props }, forwardedRef) => {
|
||||||
return (
|
return (
|
||||||
<svg {...props} ref={forwardedRef} xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" fill="currentColor" aria-hidden="true" data-slot="icon"><path fill-rule="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" clip-rule="evenodd"/></svg>
|
<svg {...props} ref={forwardedRef} xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" fill="currentColor" aria-hidden="true" data-slot="icon"><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"/></svg>
|
||||||
);
|
);
|
||||||
}
|
}
|
||||||
);
|
);
|
||||||
|
@ -15,7 +15,7 @@ interface IconProps extends React.SVGAttributes<SVGElement> {
|
|||||||
export const CheckCircleIcon = React.forwardRef<SVGSVGElement, IconProps>(
|
export const CheckCircleIcon = React.forwardRef<SVGSVGElement, IconProps>(
|
||||||
({ color = 'currentColor', ...props }, forwardedRef) => {
|
({ color = 'currentColor', ...props }, forwardedRef) => {
|
||||||
return (
|
return (
|
||||||
<svg {...props} ref={forwardedRef} xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" fill="currentColor" aria-hidden="true" data-slot="icon"><path fill-rule="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" clip-rule="evenodd"/></svg>
|
<svg {...props} ref={forwardedRef} xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" fill="currentColor" aria-hidden="true" data-slot="icon"><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"/></svg>
|
||||||
);
|
);
|
||||||
}
|
}
|
||||||
);
|
);
|
||||||
|
@ -15,7 +15,7 @@ interface IconProps extends React.SVGAttributes<SVGElement> {
|
|||||||
export const DevicePhoneMobileIcon = React.forwardRef<SVGSVGElement, IconProps>(
|
export const DevicePhoneMobileIcon = React.forwardRef<SVGSVGElement, IconProps>(
|
||||||
({ color = 'currentColor', ...props }, forwardedRef) => {
|
({ color = 'currentColor', ...props }, forwardedRef) => {
|
||||||
return (
|
return (
|
||||||
<svg {...props} ref={forwardedRef} xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" fill="currentColor" aria-hidden="true" data-slot="icon"><path d="M10.5 18.75a.75.75 0 0 0 0 1.5h3a.75.75 0 0 0 0-1.5h-3Z"/><path fill-rule="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" clip-rule="evenodd"/></svg>
|
<svg {...props} ref={forwardedRef} xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" fill="currentColor" aria-hidden="true" data-slot="icon"><path d="M10.5 18.75a.75.75 0 0 0 0 1.5h3a.75.75 0 0 0 0-1.5h-3Z"/><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"/></svg>
|
||||||
);
|
);
|
||||||
}
|
}
|
||||||
);
|
);
|
||||||
|
@ -15,7 +15,7 @@ interface IconProps extends React.SVGAttributes<SVGElement> {
|
|||||||
export const DocumentMinusIcon = React.forwardRef<SVGSVGElement, IconProps>(
|
export const DocumentMinusIcon = React.forwardRef<SVGSVGElement, IconProps>(
|
||||||
({ color = 'currentColor', ...props }, forwardedRef) => {
|
({ color = 'currentColor', ...props }, forwardedRef) => {
|
||||||
return (
|
return (
|
||||||
<svg {...props} ref={forwardedRef} xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" fill="currentColor" aria-hidden="true" data-slot="icon"><path fill-rule="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" clip-rule="evenodd"/><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"/></svg>
|
<svg {...props} ref={forwardedRef} xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" fill="currentColor" aria-hidden="true" data-slot="icon"><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"/><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"/></svg>
|
||||||
);
|
);
|
||||||
}
|
}
|
||||||
);
|
);
|
||||||
|
@ -15,7 +15,7 @@ interface IconProps extends React.SVGAttributes<SVGElement> {
|
|||||||
export const DocumentPlusIcon = React.forwardRef<SVGSVGElement, IconProps>(
|
export const DocumentPlusIcon = React.forwardRef<SVGSVGElement, IconProps>(
|
||||||
({ color = 'currentColor', ...props }, forwardedRef) => {
|
({ color = 'currentColor', ...props }, forwardedRef) => {
|
||||||
return (
|
return (
|
||||||
<svg {...props} ref={forwardedRef} xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" fill="currentColor" aria-hidden="true" data-slot="icon"><path fill-rule="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" clip-rule="evenodd"/><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"/></svg>
|
<svg {...props} ref={forwardedRef} xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" fill="currentColor" aria-hidden="true" data-slot="icon"><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"/><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"/></svg>
|
||||||
);
|
);
|
||||||
}
|
}
|
||||||
);
|
);
|
||||||
|
@ -15,7 +15,7 @@ interface IconProps extends React.SVGAttributes<SVGElement> {
|
|||||||
export const PhoneIcon = React.forwardRef<SVGSVGElement, IconProps>(
|
export const PhoneIcon = React.forwardRef<SVGSVGElement, IconProps>(
|
||||||
({ color = 'currentColor', ...props }, forwardedRef) => {
|
({ color = 'currentColor', ...props }, forwardedRef) => {
|
||||||
return (
|
return (
|
||||||
<svg {...props} ref={forwardedRef} xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" fill="currentColor" aria-hidden="true" data-slot="icon"><path fill-rule="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" clip-rule="evenodd"/></svg>
|
<svg {...props} ref={forwardedRef} xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" fill="currentColor" aria-hidden="true" data-slot="icon"><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"/></svg>
|
||||||
);
|
);
|
||||||
}
|
}
|
||||||
);
|
);
|
||||||
|
@ -15,7 +15,7 @@ interface IconProps extends React.SVGAttributes<SVGElement> {
|
|||||||
export const PrinterIcon = React.forwardRef<SVGSVGElement, IconProps>(
|
export const PrinterIcon = React.forwardRef<SVGSVGElement, IconProps>(
|
||||||
({ color = 'currentColor', ...props }, forwardedRef) => {
|
({ color = 'currentColor', ...props }, forwardedRef) => {
|
||||||
return (
|
return (
|
||||||
<svg {...props} ref={forwardedRef} xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" fill="currentColor" aria-hidden="true" data-slot="icon"><path fill-rule="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" clip-rule="evenodd"/></svg>
|
<svg {...props} ref={forwardedRef} xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" fill="currentColor" aria-hidden="true" data-slot="icon"><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"/></svg>
|
||||||
);
|
);
|
||||||
}
|
}
|
||||||
);
|
);
|
||||||
|
@ -1,10 +1,10 @@
|
|||||||
export { BuildingOfficeIcon } from "./BuildingOfficeIcon";
|
export { BuildingOfficeIcon } from './BuildingOfficeIcon';
|
||||||
export { CheckCircleIcon } from "./CheckCircleIcon";
|
export { CheckCircleIcon } from './CheckCircleIcon';
|
||||||
export { DevicePhoneMobileIcon } from "./DevicePhoneMobileIcon";
|
export { DevicePhoneMobileIcon } from './DevicePhoneMobileIcon';
|
||||||
export { DocumentMinusIcon } from "./DocumentMinusIcon";
|
export { DocumentMinusIcon } from './DocumentMinusIcon';
|
||||||
export { DocumentPlusIcon } from "./DocumentPlusIcon";
|
export { DocumentPlusIcon } from './DocumentPlusIcon';
|
||||||
export { EnvelopeIcon } from "./EnvelopeIcon";
|
export { EnvelopeIcon } from './EnvelopeIcon';
|
||||||
export { GlobeAltIcon } from "./GlobeAltIcon";
|
export { GlobeAltIcon } from './GlobeAltIcon';
|
||||||
export { PencilSquareIcon } from "./PencilSquareIcon";
|
export { PencilSquareIcon } from './PencilSquareIcon';
|
||||||
export { PhoneIcon } from "./PhoneIcon";
|
export { PhoneIcon } from './PhoneIcon';
|
||||||
export { PrinterIcon } from "./PrinterIcon";
|
export { PrinterIcon } from './PrinterIcon';
|
Loading…
Reference in New Issue
Block a user