elementa-icons 1.38.0 → 1.39.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/icons/files-folders/HomeDocuments.js +14 -0
- package/dist/icons/files-folders/index.js +2 -0
- package/dist/index.esm.js +1 -1
- package/dist/index.js +2 -0
- package/dist/types/icons/files-folders/HomeDocuments.d.ts +6 -0
- package/dist/types/icons/files-folders/index.d.ts +2 -0
- package/dist/types/index.d.ts +2 -0
- package/package.json +1 -1
- package/src/index.ts +2 -0
|
@@ -0,0 +1,14 @@
|
|
|
1
|
+
import { jsx as _jsx, jsxs as _jsxs } from "react/jsx-runtime";
|
|
2
|
+
// Import styles.
|
|
3
|
+
/**
|
|
4
|
+
* This function renders an SVG icon.
|
|
5
|
+
*/
|
|
6
|
+
const HomeDocuments = ({ color = '#000000', height = '1em', strokeWidth = 1, width = '1em' }) => {
|
|
7
|
+
return (_jsxs("svg", { xmlns: "http://www.w3.org/2000/svg", xmlSpace: "preserve", style: {
|
|
8
|
+
fillRule: 'evenodd',
|
|
9
|
+
clipRule: 'evenodd',
|
|
10
|
+
strokeLinejoin: 'round',
|
|
11
|
+
strokeMiterlimit: 2
|
|
12
|
+
}, viewBox: "0 0 27 31", height: height, width: width, stroke: color, strokeWidth: strokeWidth, fill: color, children: [_jsx("path", { d: "m25.342 21.354-5.228 7.454a.2.2 0 0 1-.084.064c-.03.014-.065.015-.099.014-1.26-.027-4.559-.107-7.993-.166-2.978-.051-6.056-.081-7.993-.107a1 1 0 0 1-.705-.302 1 1 0 0 1-.29-.706c-.012-2.128-.017-5.715-.052-9.554-.049-5.414-.143-11.323-.18-14.33a1.26 1.26 0 0 1 .344-.888 1.27 1.27 0 0 1 .888-.39l20-.337a1.63 1.63 0 0 1 1.533.981c.086.199.136.414.14.634l.29 15.4c0 .021.017.037.037.037a.036.036 0 0 0 .037-.037l.291-15.4a2.345 2.345 0 0 0-1.42-2.189 2.4 2.4 0 0 0-.908-.195L3.95 1a2.73 2.73 0 0 0-1.94.782 2.75 2.75 0 0 0-.826 1.94c-.038 3.006-.133 8.915-.18 14.33-.036 3.838-.04 7.425-.053 9.553.001.825.333 1.572.874 2.114.54.54 1.286.877 2.11.878 1.937-.006 5.015-.005 7.994-.026 3.433-.023 6.732-.07 7.993-.082a1.783 1.783 0 0 0 1.491-.813l4.932-7.776a1.063 1.063 0 0 0 .013-1.137 1.05 1.05 0 0 0-1.01-.488l-4.687.62a1.4 1.4 0 0 0-.885.475c-.214.25-.346.576-.337.927l.154 5.62a.195.195 0 0 0 .195.195.195.195 0 0 0 .197-.195l.195-5.616a.62.62 0 0 1 .18-.405.6.6 0 0 1 .388-.176z" }), _jsx("path", { d: "M6.19 23.847s2.22.003 4.738-.038c3.302-.056 7.11-.18 7.11-.18a.12.12 0 0 0 .12-.12.12.12 0 0 0-.12-.12s-3.809-.124-7.108-.18c-2.52-.043-4.74-.039-4.74-.039a.34.34 0 0 0 0 .677M6.127 26.422s2.22.004 4.738-.038c3.302-.056 7.11-.18 7.11-.18a.12.12 0 0 0 .12-.12.12.12 0 0 0-.12-.12s-3.809-.124-7.108-.18c-2.52-.042-4.74-.039-4.74-.039a.34.34 0 0 0 0 .677M8.068 11.557l-1.594-.028 7.548-7.298 2.215 2.283a.428.428 0 0 0 .73-.298l.028-1.072.554.02-.04 2.54c0 .139.054.271.152.37l2.93 3.01-.576-.007a.626.626 0 0 0-.627.628l-.076 7.284-3.543-.025-.018-3.264a.745.745 0 0 0-.744-.74l-2.009.022a.72.72 0 0 0-.722.726l.093 3.393-3.909.156-.434-6.553A.03.03 0 0 0 8 12.676a.03.03 0 0 0-.028.028l-.345 7.004a.43.43 0 0 0 .431.428l4.958.197a.62.62 0 0 0 .445-.186.62.62 0 0 0 .183-.445l.063-3.269.56.007.018 3.268c.002.41.334.742.745.742l4.986-.034a.71.71 0 0 0 .712-.712l-.077-7.38 1.38-.02a.601.601 0 0 0 .426-1.024l-3.907-3.8-.043-2.774a.475.475 0 0 0-.465-.475l-1.477-.007a.45.45 0 0 0-.461.448l.002.524-1.81-1.755a.37.37 0 0 0-.527 0l-7.866 8.134a.18.18 0 0 0-.039.199.18.18 0 0 0 .169.112l2.036-.035a.147.147 0 0 0 0-.294" })] }));
|
|
13
|
+
};
|
|
14
|
+
export default HomeDocuments;
|