@m4l/icons 0.0.1 → 0.0.2

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.
@@ -0,0 +1,7 @@
1
+ /**
2
+ * Icono de chevron hacia arriba en variante outlined
3
+ * @returns {React.ReactElement} Icono de chevron hacia arriba en variante outlined
4
+ */
5
+ export declare const ChevronUpOutlined: import('@mui/material/OverridableComponent').OverridableComponent<import('@mui/material').SvgIconTypeMap<{}, "svg">> & {
6
+ muiName: string;
7
+ };
@@ -0,0 +1,12 @@
1
+ import { jsxs as t, jsx as L } from "react/jsx-runtime";
2
+ import { createSvgIcon as M } from "@mui/material/utils";
3
+ const e = M(
4
+ /* @__PURE__ */ t("svg", { width: "17", height: "16", viewBox: "0 0 17 16", fill: "none", xmlns: "http://www.w3.org/2000/svg", children: [
5
+ /* @__PURE__ */ L("path", { d: "M8.62205 5.5L11.9441 8.82205L11.0718 9.5L8.62205 7.05029L6.17233 9.5L5.29999 8.82205L8.62205 5.5Z", fill: "#323B3B" }),
6
+ /* @__PURE__ */ L("path", { d: "M8.62205 5.5L8.69276 5.42929L8.62205 5.35858L8.55134 5.42929L8.62205 5.5ZM11.9441 8.82205L12.0055 8.901L12.0949 8.83147L12.0148 8.75134L11.9441 8.82205ZM11.0718 9.5L11.001 9.57071L11.0634 9.63311L11.1331 9.57896L11.0718 9.5ZM8.62205 7.05029L8.69276 6.97958L8.62205 6.90887L8.55134 6.97958L8.62205 7.05029ZM6.17233 9.5L6.11097 9.57896L6.18065 9.63311L6.24304 9.57071L6.17233 9.5ZM5.29999 8.82205L5.22927 8.75133L5.14914 8.83147L5.23862 8.901L5.29999 8.82205ZM8.62205 5.5L8.55134 5.57071L11.8734 8.89276L11.9441 8.82205L12.0148 8.75134L8.69276 5.42929L8.62205 5.5ZM11.9441 8.82205L11.8827 8.74309L11.0104 9.42104L11.0718 9.5L11.1331 9.57896L12.0055 8.901L11.9441 8.82205ZM11.0718 9.5L11.1425 9.42929L8.69276 6.97958L8.62205 7.05029L8.55134 7.121L11.001 9.57071L11.0718 9.5ZM8.62205 7.05029L8.55134 6.97958L6.10162 9.42929L6.17233 9.5L6.24304 9.57071L8.69276 7.121L8.62205 7.05029ZM6.17233 9.5L6.2337 9.42104L5.36135 8.74309L5.29999 8.82205L5.23862 8.901L6.11097 9.57896L6.17233 9.5ZM5.29999 8.82205L5.3707 8.89276L8.69276 5.57071L8.62205 5.5L8.55134 5.42929L5.22927 8.75133L5.29999 8.82205Z", fill: "#323B3B" })
7
+ ] }),
8
+ "ChevronUpOutlined"
9
+ );
10
+ export {
11
+ e as ChevronUpOutlined
12
+ };
package/index.d.ts CHANGED
@@ -1 +1,2 @@
1
1
  export { DummyIcon } from './DummyIcon';
2
+ export { ChevronUpOutlined } from './ChevronUpOutlined';
package/index.js CHANGED
@@ -1,4 +1,6 @@
1
- import { DummyIcon as r } from "./DummyIcon.js";
1
+ import { DummyIcon as e } from "./DummyIcon.js";
2
+ import { ChevronUpOutlined as n } from "./ChevronUpOutlined.js";
2
3
  export {
3
- r as DummyIcon
4
+ n as ChevronUpOutlined,
5
+ e as DummyIcon
4
6
  };
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@m4l/icons",
3
- "version": "0.0.1",
3
+ "version": "0.0.2",
4
4
  "license": "UNLICENSED",
5
5
  "description": "M4L Icons - Iconos personalizados siguiendo la estrategia de mui-icons-material",
6
6
  "type": "module",