rename files

This commit is contained in:
Nate Kelley 2025-02-18 11:02:28 -07:00
parent 3f014c89c0
commit 9456b4aa7e
No known key found for this signature in database
GPG Key ID: FD90372AB8D98B4F
5 changed files with 175 additions and 103 deletions

View File

@ -2,23 +2,29 @@ import React from 'react';
import { iconProps } from './iconProps';
function export(props: iconProps) {
const fill = props.fill || 'currentColor';
const secondaryfill = props.secondaryfill || fill;
const strokewidth = props.strokewidth || 1;
const width = props.width || '1em';
const height = props.height || '1em';
const title = props.title || "export";
function exportIcon(props: iconProps) {
const fill = props.fill || 'currentColor';
const secondaryfill = props.secondaryfill || fill;
const strokewidth = props.strokewidth || 1;
const width = props.width || '1em';
const height = props.height || '1em';
const title = props.title || 'export';
return (
<svg height={height} width={width} viewBox="0 0 18 18" xmlns="http://www.w3.org/2000/svg">
<title>{title}</title>
<g fill={fill}>
<path d="M12.75,6.5h-3v5.5c0,.414-.336,.75-.75,.75s-.75-.336-.75-.75V6.5h-3c-1.517,0-2.75,1.233-2.75,2.75v5c0,1.517,1.233,2.75,2.75,2.75h7.5c1.517,0,2.75-1.233,2.75-2.75v-5c0-1.517-1.233-2.75-2.75-2.75Z" fill={fill}/>
<path d="M6.53,4.78l1.72-1.72v3.439h1.5V3.061l1.72,1.72c.146,.146,.338,.22,.53,.22s.384-.073,.53-.22c.293-.293,.293-.768,0-1.061L9.53,.72c-.293-.293-.768-.293-1.061,0l-3,3c-.293,.293-.293,.768,0,1.061s.768,.293,1.061,0Z" fill={secondaryfill}/>
</g>
</svg>
);
};
return (
<svg height={height} width={width} viewBox="0 0 18 18" xmlns="http://www.w3.org/2000/svg">
<title>{title}</title>
<g fill={fill}>
<path
d="M12.75,6.5h-3v5.5c0,.414-.336,.75-.75,.75s-.75-.336-.75-.75V6.5h-3c-1.517,0-2.75,1.233-2.75,2.75v5c0,1.517,1.233,2.75,2.75,2.75h7.5c1.517,0,2.75-1.233,2.75-2.75v-5c0-1.517-1.233-2.75-2.75-2.75Z"
fill={fill}
/>
<path
d="M6.53,4.78l1.72-1.72v3.439h1.5V3.061l1.72,1.72c.146,.146,.338,.22,.53,.22s.384-.073,.53-.22c.293-.293,.293-.768,0-1.061L9.53,.72c-.293-.293-.768-.293-1.061,0l-3,3c-.293,.293-.293,.768,0,1.061s.768,.293,1.061,0Z"
fill={secondaryfill}
/>
</g>
</svg>
);
}
export default export;
export default exportIcon;

View File

@ -2,23 +2,29 @@ import React from 'react';
import { iconProps } from './iconProps';
function import(props: iconProps) {
const fill = props.fill || 'currentColor';
const secondaryfill = props.secondaryfill || fill;
const strokewidth = props.strokewidth || 1;
const width = props.width || '1em';
const height = props.height || '1em';
const title = props.title || "import";
function importIcon(props: iconProps) {
const fill = props.fill || 'currentColor';
const secondaryfill = props.secondaryfill || fill;
const strokewidth = props.strokewidth || 1;
const width = props.width || '1em';
const height = props.height || '1em';
const title = props.title || 'import';
return (
<svg height={height} width={width} viewBox="0 0 18 18" xmlns="http://www.w3.org/2000/svg">
<title>{title}</title>
<g fill={fill}>
<path d="M12.75,6h-3v5.439l1.72-1.72c.293-.293,.768-.293,1.061,0s.293,.768,0,1.061l-3,3c-.146,.146-.338,.22-.53,.22s-.384-.073-.53-.22l-3-3c-.293-.293-.293-.768,0-1.061s.768-.293,1.061,0l1.72,1.72V6h-3c-1.517,0-2.75,1.233-2.75,2.75v5.5c0,1.517,1.233,2.75,2.75,2.75h7.5c1.517,0,2.75-1.233,2.75-2.75v-5.5c0-1.517-1.233-2.75-2.75-2.75Z" fill={fill}/>
<path d="M9.75,6.048V1.75c0-.414-.336-.75-.75-.75s-.75,.336-.75,.75V6.048h1.5Z" fill={secondaryfill}/>
</g>
</svg>
);
};
return (
<svg height={height} width={width} viewBox="0 0 18 18" xmlns="http://www.w3.org/2000/svg">
<title>{title}</title>
<g fill={fill}>
<path
d="M12.75,6h-3v5.439l1.72-1.72c.293-.293,.768-.293,1.061,0s.293,.768,0,1.061l-3,3c-.146,.146-.338,.22-.53,.22s-.384-.073-.53-.22l-3-3c-.293-.293-.293-.768,0-1.061s.768-.293,1.061,0l1.72,1.72V6h-3c-1.517,0-2.75,1.233-2.75,2.75v5.5c0,1.517,1.233,2.75,2.75,2.75h7.5c1.517,0,2.75-1.233,2.75-2.75v-5.5c0-1.517-1.233-2.75-2.75-2.75Z"
fill={fill}
/>
<path
d="M9.75,6.048V1.75c0-.414-.336-.75-.75-.75s-.75,.336-.75,.75V6.048h1.5Z"
fill={secondaryfill}
/>
</g>
</svg>
);
}
export default import;
export default importIcon;

View File

@ -1,29 +1,51 @@
import React from 'react';
function designFileImport(props: iconProps) {
const fill = props.fill || 'currentColor';
const secondaryfill = props.secondaryfill || fill;
const strokewidth = props.strokewidth || 1;
const width = props.width || '1em';
const height = props.height || '1em';
const title = props.title || "18px design file import";
import { iconProps } from './iconProps';
return (
<svg height={height} width={width} viewBox="0 0 18 18" xmlns="http://www.w3.org/2000/svg">
<title>{title}</title>
<g fill={fill}>
<circle cx="10.5" cy="8" fill={fill} r="2"/>
<rect height="3.5" width="3.5" fill={fill} rx=".9" ry=".9" x="5" y="10"/>
<path d="M7.402,7.648c.124-.217,.123-.486-.003-.701l-1.33-2.28c-.251-.43-.959-.428-1.208,0l-1.33,2.279c-.126,.216-.128,.484-.003,.702,.124,.217,.357,.352,.607,.352h2.659c.25,0,.483-.135,.607-.352Z" fill={fill}/>
<path d="M11.062,16.25H3.75c-1.105,0-2-.895-2-2V3.75c0-1.105,.895-2,2-2h5.586c.265,0,.52,.105,.707,.293l3.914,3.914c.188,.188,.293,.442,.293,.707v2.086" fill="none" stroke={fill} strokeLinecap="round" strokeLinejoin="round" strokeWidth={strokewidth}/>
<path d="M14.75 16.25L12.25 13.75 14.75 11.25" fill="none" stroke={secondaryfill} strokeLinecap="round" strokeLinejoin="round" strokeWidth={strokewidth}/>
<path d="M12.5 13.75L17.25 13.75" fill="none" stroke={secondaryfill} strokeLinecap="round" strokeLinejoin="round" strokeWidth={strokewidth}/>
</g>
</svg>
);
};
function designFileImport(props: iconProps) {
const fill = props.fill || 'currentColor';
const secondaryfill = props.secondaryfill || fill;
const strokewidth = props.strokewidth || 1;
const width = props.width || '1em';
const height = props.height || '1em';
const title = props.title || '18px design file import';
return (
<svg height={height} width={width} viewBox="0 0 18 18" xmlns="http://www.w3.org/2000/svg">
<title>{title}</title>
<g fill={fill}>
<circle cx="10.5" cy="8" fill={fill} r="2" />
<rect height="3.5" width="3.5" fill={fill} rx=".9" ry=".9" x="5" y="10" />
<path
d="M7.402,7.648c.124-.217,.123-.486-.003-.701l-1.33-2.28c-.251-.43-.959-.428-1.208,0l-1.33,2.279c-.126,.216-.128,.484-.003,.702,.124,.217,.357,.352,.607,.352h2.659c.25,0,.483-.135,.607-.352Z"
fill={fill}
/>
<path
d="M11.062,16.25H3.75c-1.105,0-2-.895-2-2V3.75c0-1.105,.895-2,2-2h5.586c.265,0,.52,.105,.707,.293l3.914,3.914c.188,.188,.293,.442,.293,.707v2.086"
fill="none"
stroke={fill}
strokeLinecap="round"
strokeLinejoin="round"
strokeWidth={strokewidth}
/>
<path
d="M14.75 16.25L12.25 13.75 14.75 11.25"
fill="none"
stroke={secondaryfill}
strokeLinecap="round"
strokeLinejoin="round"
strokeWidth={strokewidth}
/>
<path
d="M12.5 13.75L17.25 13.75"
fill="none"
stroke={secondaryfill}
strokeLinecap="round"
strokeLinejoin="round"
strokeWidth={strokewidth}
/>
</g>
</svg>
);
}
export default designFileImport;

View File

@ -1,26 +1,45 @@
import React from 'react';
import { iconProps } from './iconProps';
function exportIcon(props: iconProps) {
const fill = props.fill || 'currentColor';
const secondaryfill = props.secondaryfill || fill;
const strokewidth = props.strokewidth || 1;
const width = props.width || '1em';
const height = props.height || '1em';
const title = props.title || '18px export';
return (
<svg height={height} width={width} viewBox="0 0 18 18" xmlns="http://www.w3.org/2000/svg">
<title>{title}</title>
<g fill={fill}>
<path
d="M11.75,7.25h1c1.105,0,2,.895,2,2v5c0,1.105-.895,2-2,2H5.25c-1.105,0-2-.895-2-2v-5c0-1.105,.895-2,2-2h1"
fill="none"
stroke={fill}
strokeLinecap="round"
strokeLinejoin="round"
strokeWidth={strokewidth}
/>
<path
d="M6 4.25L9 1.25 12 4.25"
fill="none"
stroke={secondaryfill}
strokeLinecap="round"
strokeLinejoin="round"
strokeWidth={strokewidth}
/>
<path
d="M9 1.25L9 12"
fill="none"
stroke={secondaryfill}
strokeLinecap="round"
strokeLinejoin="round"
strokeWidth={strokewidth}
/>
</g>
</svg>
);
}
function export(props: iconProps) {
const fill = props.fill || 'currentColor';
const secondaryfill = props.secondaryfill || fill;
const strokewidth = props.strokewidth || 1;
const width = props.width || '1em';
const height = props.height || '1em';
const title = props.title || "18px export";
return (
<svg height={height} width={width} viewBox="0 0 18 18" xmlns="http://www.w3.org/2000/svg">
<title>{title}</title>
<g fill={fill}>
<path d="M11.75,7.25h1c1.105,0,2,.895,2,2v5c0,1.105-.895,2-2,2H5.25c-1.105,0-2-.895-2-2v-5c0-1.105,.895-2,2-2h1" fill="none" stroke={fill} strokeLinecap="round" strokeLinejoin="round" strokeWidth={strokewidth}/>
<path d="M6 4.25L9 1.25 12 4.25" fill="none" stroke={secondaryfill} strokeLinecap="round" strokeLinejoin="round" strokeWidth={strokewidth}/>
<path d="M9 1.25L9 12" fill="none" stroke={secondaryfill} strokeLinecap="round" strokeLinejoin="round" strokeWidth={strokewidth}/>
</g>
</svg>
);
};
export default export;
export default exportIcon;

View File

@ -1,26 +1,45 @@
import { iconProps } from './iconProps';
import React from 'react';
function importIcon(props: iconProps) {
const fill = props.fill || 'currentColor';
const secondaryfill = props.secondaryfill || fill;
const strokewidth = props.strokewidth || 1;
const width = props.width || '1em';
const height = props.height || '1em';
const title = props.title || '18px import';
return (
<svg height={height} width={width} viewBox="0 0 18 18" xmlns="http://www.w3.org/2000/svg">
<title>{title}</title>
<g fill={fill}>
<path
d="M11.75,6.75h1c1.105,0,2,.895,2,2v5.5c0,1.105-.895,2-2,2H5.25c-1.105,0-2-.895-2-2v-5.5c0-1.105,.895-2,2-2h1"
fill="none"
stroke={fill}
strokeLinecap="round"
strokeLinejoin="round"
strokeWidth={strokewidth}
/>
<path
d="M12 10.25L9 13.25 6 10.25"
fill="none"
stroke={secondaryfill}
strokeLinecap="round"
strokeLinejoin="round"
strokeWidth={strokewidth}
/>
<path
d="M9 13.25L9 1.75"
fill="none"
stroke={secondaryfill}
strokeLinecap="round"
strokeLinejoin="round"
strokeWidth={strokewidth}
/>
</g>
</svg>
);
}
function import(props: iconProps) {
const fill = props.fill || 'currentColor';
const secondaryfill = props.secondaryfill || fill;
const strokewidth = props.strokewidth || 1;
const width = props.width || '1em';
const height = props.height || '1em';
const title = props.title || "18px import";
return (
<svg height={height} width={width} viewBox="0 0 18 18" xmlns="http://www.w3.org/2000/svg">
<title>{title}</title>
<g fill={fill}>
<path d="M11.75,6.75h1c1.105,0,2,.895,2,2v5.5c0,1.105-.895,2-2,2H5.25c-1.105,0-2-.895-2-2v-5.5c0-1.105,.895-2,2-2h1" fill="none" stroke={fill} strokeLinecap="round" strokeLinejoin="round" strokeWidth={strokewidth}/>
<path d="M12 10.25L9 13.25 6 10.25" fill="none" stroke={secondaryfill} strokeLinecap="round" strokeLinejoin="round" strokeWidth={strokewidth}/>
<path d="M9 13.25L9 1.75" fill="none" stroke={secondaryfill} strokeLinecap="round" strokeLinejoin="round" strokeWidth={strokewidth}/>
</g>
</svg>
);
};
export default import;
export default importIcon;