gov-layout 1.1.9 → 1.1.12
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/README.md +251 -113
- package/dist/index.d.mts +40 -1
- package/dist/index.d.ts +40 -1
- package/dist/index.js +249 -0
- package/dist/index.js.map +1 -1
- package/dist/index.mjs +217 -1
- package/dist/index.mjs.map +1 -1
- package/package.json +1 -1
package/dist/index.js
CHANGED
|
@@ -1601,18 +1601,267 @@ function SettingsPanel({ className, showTheme = true }) {
|
|
|
1601
1601
|
)) })
|
|
1602
1602
|
] });
|
|
1603
1603
|
}
|
|
1604
|
+
var defaultProps = (size = 20) => ({
|
|
1605
|
+
width: size,
|
|
1606
|
+
height: size,
|
|
1607
|
+
viewBox: "0 0 24 24",
|
|
1608
|
+
fill: "none",
|
|
1609
|
+
stroke: "currentColor",
|
|
1610
|
+
strokeWidth: 2,
|
|
1611
|
+
strokeLinecap: "round",
|
|
1612
|
+
strokeLinejoin: "round"
|
|
1613
|
+
});
|
|
1614
|
+
function HomeIcon({ size = 20, className, style } = {}) {
|
|
1615
|
+
return /* @__PURE__ */ jsxRuntime.jsxs("svg", { ...defaultProps(size), className, style, children: [
|
|
1616
|
+
/* @__PURE__ */ jsxRuntime.jsx("path", { d: "M3 9l9-7 9 7v11a2 2 0 0 1-2 2H5a2 2 0 0 1-2-2z" }),
|
|
1617
|
+
/* @__PURE__ */ jsxRuntime.jsx("polyline", { points: "9 22 9 12 15 12 15 22" })
|
|
1618
|
+
] });
|
|
1619
|
+
}
|
|
1620
|
+
function SearchIcon({ size = 20, className, style } = {}) {
|
|
1621
|
+
return /* @__PURE__ */ jsxRuntime.jsxs("svg", { ...defaultProps(size), className, style, children: [
|
|
1622
|
+
/* @__PURE__ */ jsxRuntime.jsx("circle", { cx: "11", cy: "11", r: "8" }),
|
|
1623
|
+
/* @__PURE__ */ jsxRuntime.jsx("line", { x1: "21", y1: "21", x2: "16.65", y2: "16.65" })
|
|
1624
|
+
] });
|
|
1625
|
+
}
|
|
1626
|
+
function BellIcon2({ size = 20, className, style } = {}) {
|
|
1627
|
+
return /* @__PURE__ */ jsxRuntime.jsxs("svg", { ...defaultProps(size), className, style, children: [
|
|
1628
|
+
/* @__PURE__ */ jsxRuntime.jsx("path", { d: "M18 8A6 6 0 0 0 6 8c0 7-3 9-3 9h18s-3-2-3-9" }),
|
|
1629
|
+
/* @__PURE__ */ jsxRuntime.jsx("path", { d: "M13.73 21a2 2 0 0 1-3.46 0" })
|
|
1630
|
+
] });
|
|
1631
|
+
}
|
|
1632
|
+
function FolderIcon({ size = 20, className, style } = {}) {
|
|
1633
|
+
return /* @__PURE__ */ jsxRuntime.jsx("svg", { ...defaultProps(size), className, style, children: /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M22 19a2 2 0 0 1-2 2H4a2 2 0 0 1-2-2V5a2 2 0 0 1 2-2h5l2 3h9a2 2 0 0 1 2 2z" }) });
|
|
1634
|
+
}
|
|
1635
|
+
function ClipboardIcon({ size = 20, className, style } = {}) {
|
|
1636
|
+
return /* @__PURE__ */ jsxRuntime.jsxs("svg", { ...defaultProps(size), className, style, children: [
|
|
1637
|
+
/* @__PURE__ */ jsxRuntime.jsx("path", { d: "M16 4h2a2 2 0 0 1 2 2v14a2 2 0 0 1-2 2H6a2 2 0 0 1-2-2V6a2 2 0 0 1 2-2h2" }),
|
|
1638
|
+
/* @__PURE__ */ jsxRuntime.jsx("rect", { x: "8", y: "2", width: "8", height: "4", rx: "1", ry: "1" })
|
|
1639
|
+
] });
|
|
1640
|
+
}
|
|
1641
|
+
function FileTextIcon({ size = 20, className, style } = {}) {
|
|
1642
|
+
return /* @__PURE__ */ jsxRuntime.jsxs("svg", { ...defaultProps(size), className, style, children: [
|
|
1643
|
+
/* @__PURE__ */ jsxRuntime.jsx("path", { d: "M14 2H6a2 2 0 0 0-2 2v16a2 2 0 0 0 2 2h12a2 2 0 0 0 2-2V8z" }),
|
|
1644
|
+
/* @__PURE__ */ jsxRuntime.jsx("polyline", { points: "14 2 14 8 20 8" }),
|
|
1645
|
+
/* @__PURE__ */ jsxRuntime.jsx("line", { x1: "16", y1: "13", x2: "8", y2: "13" }),
|
|
1646
|
+
/* @__PURE__ */ jsxRuntime.jsx("line", { x1: "16", y1: "17", x2: "8", y2: "17" }),
|
|
1647
|
+
/* @__PURE__ */ jsxRuntime.jsx("polyline", { points: "10 9 9 9 8 9" })
|
|
1648
|
+
] });
|
|
1649
|
+
}
|
|
1650
|
+
function CalendarIcon({ size = 20, className, style } = {}) {
|
|
1651
|
+
return /* @__PURE__ */ jsxRuntime.jsxs("svg", { ...defaultProps(size), className, style, children: [
|
|
1652
|
+
/* @__PURE__ */ jsxRuntime.jsx("rect", { x: "3", y: "4", width: "18", height: "18", rx: "2", ry: "2" }),
|
|
1653
|
+
/* @__PURE__ */ jsxRuntime.jsx("line", { x1: "16", y1: "2", x2: "16", y2: "6" }),
|
|
1654
|
+
/* @__PURE__ */ jsxRuntime.jsx("line", { x1: "8", y1: "2", x2: "8", y2: "6" }),
|
|
1655
|
+
/* @__PURE__ */ jsxRuntime.jsx("line", { x1: "3", y1: "10", x2: "21", y2: "10" })
|
|
1656
|
+
] });
|
|
1657
|
+
}
|
|
1658
|
+
function UserIcon({ size = 20, className, style } = {}) {
|
|
1659
|
+
return /* @__PURE__ */ jsxRuntime.jsxs("svg", { ...defaultProps(size), className, style, children: [
|
|
1660
|
+
/* @__PURE__ */ jsxRuntime.jsx("path", { d: "M20 21v-2a4 4 0 0 0-4-4H8a4 4 0 0 0-4 4v2" }),
|
|
1661
|
+
/* @__PURE__ */ jsxRuntime.jsx("circle", { cx: "12", cy: "7", r: "4" })
|
|
1662
|
+
] });
|
|
1663
|
+
}
|
|
1664
|
+
function UsersIcon({ size = 20, className, style } = {}) {
|
|
1665
|
+
return /* @__PURE__ */ jsxRuntime.jsxs("svg", { ...defaultProps(size), className, style, children: [
|
|
1666
|
+
/* @__PURE__ */ jsxRuntime.jsx("path", { d: "M17 21v-2a4 4 0 0 0-4-4H5a4 4 0 0 0-4 4v2" }),
|
|
1667
|
+
/* @__PURE__ */ jsxRuntime.jsx("circle", { cx: "9", cy: "7", r: "4" }),
|
|
1668
|
+
/* @__PURE__ */ jsxRuntime.jsx("path", { d: "M23 21v-2a4 4 0 0 0-3-3.87" }),
|
|
1669
|
+
/* @__PURE__ */ jsxRuntime.jsx("path", { d: "M16 3.13a4 4 0 0 1 0 7.75" })
|
|
1670
|
+
] });
|
|
1671
|
+
}
|
|
1672
|
+
function GearIcon2({ size = 20, className, style } = {}) {
|
|
1673
|
+
return /* @__PURE__ */ jsxRuntime.jsxs("svg", { ...defaultProps(size), className, style, children: [
|
|
1674
|
+
/* @__PURE__ */ jsxRuntime.jsx("circle", { cx: "12", cy: "12", r: "3" }),
|
|
1675
|
+
/* @__PURE__ */ jsxRuntime.jsx("path", { d: "M19.4 15a1.65 1.65 0 0 0 .33 1.82l.06.06a2 2 0 0 1 0 2.83 2 2 0 0 1-2.83 0l-.06-.06a1.65 1.65 0 0 0-1.82-.33 1.65 1.65 0 0 0-1 1.51V21a2 2 0 0 1-2 2 2 2 0 0 1-2-2v-.09A1.65 1.65 0 0 0 9 19.4a1.65 1.65 0 0 0-1.82.33l-.06.06a2 2 0 0 1-2.83 0 2 2 0 0 1 0-2.83l.06-.06A1.65 1.65 0 0 0 4.68 15a1.65 1.65 0 0 0-1.51-1H3a2 2 0 0 1-2-2 2 2 0 0 1 2-2h.09A1.65 1.65 0 0 0 4.6 9a1.65 1.65 0 0 0-.33-1.82l-.06-.06a2 2 0 0 1 0-2.83 2 2 0 0 1 2.83 0l.06.06A1.65 1.65 0 0 0 9 4.68a1.65 1.65 0 0 0 1-1.51V3a2 2 0 0 1 2-2 2 2 0 0 1 2 2v.09a1.65 1.65 0 0 0 1 1.51 1.65 1.65 0 0 0 1.82-.33l.06-.06a2 2 0 0 1 2.83 0 2 2 0 0 1 0 2.83l-.06.06a1.65 1.65 0 0 0-.33 1.82V9a1.65 1.65 0 0 0 1.51 1H21a2 2 0 0 1 2 2 2 2 0 0 1-2 2h-.09a1.65 1.65 0 0 0-1.51 1z" })
|
|
1676
|
+
] });
|
|
1677
|
+
}
|
|
1678
|
+
function WrenchIcon({ size = 20, className, style } = {}) {
|
|
1679
|
+
return /* @__PURE__ */ jsxRuntime.jsx("svg", { ...defaultProps(size), className, style, children: /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M14.7 6.3a1 1 0 0 0 0 1.4l1.6 1.6a1 1 0 0 0 1.4 0l3.77-3.77a6 6 0 0 1-7.94 7.94l-6.91 6.91a2.12 2.12 0 0 1-3-3l6.91-6.91a6 6 0 0 1 7.94-7.94l-3.76 3.76z" }) });
|
|
1680
|
+
}
|
|
1681
|
+
function ShieldIcon({ size = 20, className, style } = {}) {
|
|
1682
|
+
return /* @__PURE__ */ jsxRuntime.jsx("svg", { ...defaultProps(size), className, style, children: /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M12 22s8-4 8-10V5l-8-3-8 3v7c0 6 8 10 8 10z" }) });
|
|
1683
|
+
}
|
|
1684
|
+
function HelpCircleIcon2({ size = 20, className, style } = {}) {
|
|
1685
|
+
return /* @__PURE__ */ jsxRuntime.jsxs("svg", { ...defaultProps(size), className, style, children: [
|
|
1686
|
+
/* @__PURE__ */ jsxRuntime.jsx("circle", { cx: "12", cy: "12", r: "10" }),
|
|
1687
|
+
/* @__PURE__ */ jsxRuntime.jsx("path", { d: "M9.09 9a3 3 0 0 1 5.83 1c0 2-3 3-3 3" }),
|
|
1688
|
+
/* @__PURE__ */ jsxRuntime.jsx("line", { x1: "12", y1: "17", x2: "12.01", y2: "17" })
|
|
1689
|
+
] });
|
|
1690
|
+
}
|
|
1691
|
+
function BarChartIcon({ size = 20, className, style } = {}) {
|
|
1692
|
+
return /* @__PURE__ */ jsxRuntime.jsxs("svg", { ...defaultProps(size), className, style, children: [
|
|
1693
|
+
/* @__PURE__ */ jsxRuntime.jsx("line", { x1: "12", y1: "20", x2: "12", y2: "10" }),
|
|
1694
|
+
/* @__PURE__ */ jsxRuntime.jsx("line", { x1: "18", y1: "20", x2: "18", y2: "4" }),
|
|
1695
|
+
/* @__PURE__ */ jsxRuntime.jsx("line", { x1: "6", y1: "20", x2: "6", y2: "16" })
|
|
1696
|
+
] });
|
|
1697
|
+
}
|
|
1698
|
+
function HistoryIcon({ size = 20, className, style } = {}) {
|
|
1699
|
+
return /* @__PURE__ */ jsxRuntime.jsxs("svg", { ...defaultProps(size), className, style, children: [
|
|
1700
|
+
/* @__PURE__ */ jsxRuntime.jsx("polyline", { points: "1 4 1 10 7 10" }),
|
|
1701
|
+
/* @__PURE__ */ jsxRuntime.jsx("path", { d: "M3.51 15a9 9 0 1 0 2.13-9.36L1 10" })
|
|
1702
|
+
] });
|
|
1703
|
+
}
|
|
1704
|
+
function DatabaseIcon({ size = 20, className, style } = {}) {
|
|
1705
|
+
return /* @__PURE__ */ jsxRuntime.jsxs("svg", { ...defaultProps(size), className, style, children: [
|
|
1706
|
+
/* @__PURE__ */ jsxRuntime.jsx("ellipse", { cx: "12", cy: "5", rx: "9", ry: "3" }),
|
|
1707
|
+
/* @__PURE__ */ jsxRuntime.jsx("path", { d: "M21 12c0 1.66-4 3-9 3s-9-1.34-9-3" }),
|
|
1708
|
+
/* @__PURE__ */ jsxRuntime.jsx("path", { d: "M3 5v14c0 1.66 4 3 9 3s9-1.34 9-3V5" })
|
|
1709
|
+
] });
|
|
1710
|
+
}
|
|
1711
|
+
function BuildingIcon({ size = 20, className, style } = {}) {
|
|
1712
|
+
return /* @__PURE__ */ jsxRuntime.jsxs("svg", { ...defaultProps(size), className, style, children: [
|
|
1713
|
+
/* @__PURE__ */ jsxRuntime.jsx("rect", { x: "4", y: "2", width: "16", height: "20", rx: "2", ry: "2" }),
|
|
1714
|
+
/* @__PURE__ */ jsxRuntime.jsx("line", { x1: "9", y1: "22", x2: "9", y2: "18" }),
|
|
1715
|
+
/* @__PURE__ */ jsxRuntime.jsx("line", { x1: "15", y1: "22", x2: "15", y2: "18" }),
|
|
1716
|
+
/* @__PURE__ */ jsxRuntime.jsx("line", { x1: "9", y1: "6", x2: "9.01", y2: "6" }),
|
|
1717
|
+
/* @__PURE__ */ jsxRuntime.jsx("line", { x1: "15", y1: "6", x2: "15.01", y2: "6" }),
|
|
1718
|
+
/* @__PURE__ */ jsxRuntime.jsx("line", { x1: "9", y1: "10", x2: "9.01", y2: "10" }),
|
|
1719
|
+
/* @__PURE__ */ jsxRuntime.jsx("line", { x1: "15", y1: "10", x2: "15.01", y2: "10" }),
|
|
1720
|
+
/* @__PURE__ */ jsxRuntime.jsx("line", { x1: "9", y1: "14", x2: "9.01", y2: "14" }),
|
|
1721
|
+
/* @__PURE__ */ jsxRuntime.jsx("line", { x1: "15", y1: "14", x2: "15.01", y2: "14" })
|
|
1722
|
+
] });
|
|
1723
|
+
}
|
|
1724
|
+
function MapPinIcon({ size = 20, className, style } = {}) {
|
|
1725
|
+
return /* @__PURE__ */ jsxRuntime.jsxs("svg", { ...defaultProps(size), className, style, children: [
|
|
1726
|
+
/* @__PURE__ */ jsxRuntime.jsx("path", { d: "M21 10c0 7-9 13-9 13s-9-6-9-13a9 9 0 0 1 18 0z" }),
|
|
1727
|
+
/* @__PURE__ */ jsxRuntime.jsx("circle", { cx: "12", cy: "10", r: "3" })
|
|
1728
|
+
] });
|
|
1729
|
+
}
|
|
1730
|
+
function PhoneIcon({ size = 20, className, style } = {}) {
|
|
1731
|
+
return /* @__PURE__ */ jsxRuntime.jsx("svg", { ...defaultProps(size), className, style, children: /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M22 16.92v3a2 2 0 0 1-2.18 2 19.79 19.79 0 0 1-8.63-3.07 19.5 19.5 0 0 1-6-6 19.79 19.79 0 0 1-3.07-8.67A2 2 0 0 1 4.11 2h3a2 2 0 0 1 2 1.72 12.84 12.84 0 0 0 .7 2.81 2 2 0 0 1-.45 2.11L8.09 9.91a16 16 0 0 0 6 6l1.27-1.27a2 2 0 0 1 2.11-.45 12.84 12.84 0 0 0 2.81.7A2 2 0 0 1 22 16.92z" }) });
|
|
1732
|
+
}
|
|
1733
|
+
function MailIcon({ size = 20, className, style } = {}) {
|
|
1734
|
+
return /* @__PURE__ */ jsxRuntime.jsxs("svg", { ...defaultProps(size), className, style, children: [
|
|
1735
|
+
/* @__PURE__ */ jsxRuntime.jsx("path", { d: "M4 4h16c1.1 0 2 .9 2 2v12c0 1.1-.9 2-2 2H4c-1.1 0-2-.9-2-2V6c0-1.1.9-2 2-2z" }),
|
|
1736
|
+
/* @__PURE__ */ jsxRuntime.jsx("polyline", { points: "22,6 12,13 2,6" })
|
|
1737
|
+
] });
|
|
1738
|
+
}
|
|
1739
|
+
function CheckCircleIcon({ size = 20, className, style } = {}) {
|
|
1740
|
+
return /* @__PURE__ */ jsxRuntime.jsxs("svg", { ...defaultProps(size), className, style, children: [
|
|
1741
|
+
/* @__PURE__ */ jsxRuntime.jsx("path", { d: "M22 11.08V12a10 10 0 1 1-5.93-9.14" }),
|
|
1742
|
+
/* @__PURE__ */ jsxRuntime.jsx("polyline", { points: "22 4 12 14.01 9 11.01" })
|
|
1743
|
+
] });
|
|
1744
|
+
}
|
|
1745
|
+
function AlertTriangleIcon({ size = 20, className, style } = {}) {
|
|
1746
|
+
return /* @__PURE__ */ jsxRuntime.jsxs("svg", { ...defaultProps(size), className, style, children: [
|
|
1747
|
+
/* @__PURE__ */ jsxRuntime.jsx("path", { d: "M10.29 3.86L1.82 18a2 2 0 0 0 1.71 3h16.94a2 2 0 0 0 1.71-3L13.71 3.86a2 2 0 0 0-3.42 0z" }),
|
|
1748
|
+
/* @__PURE__ */ jsxRuntime.jsx("line", { x1: "12", y1: "9", x2: "12", y2: "13" }),
|
|
1749
|
+
/* @__PURE__ */ jsxRuntime.jsx("line", { x1: "12", y1: "17", x2: "12.01", y2: "17" })
|
|
1750
|
+
] });
|
|
1751
|
+
}
|
|
1752
|
+
function XCircleIcon({ size = 20, className, style } = {}) {
|
|
1753
|
+
return /* @__PURE__ */ jsxRuntime.jsxs("svg", { ...defaultProps(size), className, style, children: [
|
|
1754
|
+
/* @__PURE__ */ jsxRuntime.jsx("circle", { cx: "12", cy: "12", r: "10" }),
|
|
1755
|
+
/* @__PURE__ */ jsxRuntime.jsx("line", { x1: "15", y1: "9", x2: "9", y2: "15" }),
|
|
1756
|
+
/* @__PURE__ */ jsxRuntime.jsx("line", { x1: "9", y1: "9", x2: "15", y2: "15" })
|
|
1757
|
+
] });
|
|
1758
|
+
}
|
|
1759
|
+
function PlusCircleIcon({ size = 20, className, style } = {}) {
|
|
1760
|
+
return /* @__PURE__ */ jsxRuntime.jsxs("svg", { ...defaultProps(size), className, style, children: [
|
|
1761
|
+
/* @__PURE__ */ jsxRuntime.jsx("circle", { cx: "12", cy: "12", r: "10" }),
|
|
1762
|
+
/* @__PURE__ */ jsxRuntime.jsx("line", { x1: "12", y1: "8", x2: "12", y2: "16" }),
|
|
1763
|
+
/* @__PURE__ */ jsxRuntime.jsx("line", { x1: "8", y1: "12", x2: "16", y2: "12" })
|
|
1764
|
+
] });
|
|
1765
|
+
}
|
|
1766
|
+
function LogOutIcon({ size = 20, className, style } = {}) {
|
|
1767
|
+
return /* @__PURE__ */ jsxRuntime.jsxs("svg", { ...defaultProps(size), className, style, children: [
|
|
1768
|
+
/* @__PURE__ */ jsxRuntime.jsx("path", { d: "M9 21H5a2 2 0 0 1-2-2V5a2 2 0 0 1 2-2h4" }),
|
|
1769
|
+
/* @__PURE__ */ jsxRuntime.jsx("polyline", { points: "16 17 21 12 16 7" }),
|
|
1770
|
+
/* @__PURE__ */ jsxRuntime.jsx("line", { x1: "21", y1: "12", x2: "9", y2: "12" })
|
|
1771
|
+
] });
|
|
1772
|
+
}
|
|
1773
|
+
function DownloadIcon({ size = 20, className, style } = {}) {
|
|
1774
|
+
return /* @__PURE__ */ jsxRuntime.jsxs("svg", { ...defaultProps(size), className, style, children: [
|
|
1775
|
+
/* @__PURE__ */ jsxRuntime.jsx("path", { d: "M21 15v4a2 2 0 0 1-2 2H5a2 2 0 0 1-2-2v-4" }),
|
|
1776
|
+
/* @__PURE__ */ jsxRuntime.jsx("polyline", { points: "7 10 12 15 17 10" }),
|
|
1777
|
+
/* @__PURE__ */ jsxRuntime.jsx("line", { x1: "12", y1: "15", x2: "12", y2: "3" })
|
|
1778
|
+
] });
|
|
1779
|
+
}
|
|
1780
|
+
function UploadIcon({ size = 20, className, style } = {}) {
|
|
1781
|
+
return /* @__PURE__ */ jsxRuntime.jsxs("svg", { ...defaultProps(size), className, style, children: [
|
|
1782
|
+
/* @__PURE__ */ jsxRuntime.jsx("path", { d: "M21 15v4a2 2 0 0 1-2 2H5a2 2 0 0 1-2-2v-4" }),
|
|
1783
|
+
/* @__PURE__ */ jsxRuntime.jsx("polyline", { points: "17 8 12 3 7 8" }),
|
|
1784
|
+
/* @__PURE__ */ jsxRuntime.jsx("line", { x1: "12", y1: "3", x2: "12", y2: "15" })
|
|
1785
|
+
] });
|
|
1786
|
+
}
|
|
1787
|
+
function PrinterIcon({ size = 20, className, style } = {}) {
|
|
1788
|
+
return /* @__PURE__ */ jsxRuntime.jsxs("svg", { ...defaultProps(size), className, style, children: [
|
|
1789
|
+
/* @__PURE__ */ jsxRuntime.jsx("polyline", { points: "6 9 6 2 18 2 18 9" }),
|
|
1790
|
+
/* @__PURE__ */ jsxRuntime.jsx("path", { d: "M6 18H4a2 2 0 0 1-2-2v-5a2 2 0 0 1 2-2h16a2 2 0 0 1 2 2v5a2 2 0 0 1-2 2h-2" }),
|
|
1791
|
+
/* @__PURE__ */ jsxRuntime.jsx("rect", { x: "6", y: "14", width: "12", height: "8" })
|
|
1792
|
+
] });
|
|
1793
|
+
}
|
|
1794
|
+
function StarIcon({ size = 20, className, style } = {}) {
|
|
1795
|
+
return /* @__PURE__ */ jsxRuntime.jsx("svg", { ...defaultProps(size), className, style, children: /* @__PURE__ */ jsxRuntime.jsx("polygon", { points: "12 2 15.09 8.26 22 9.27 17 14.14 18.18 21.02 12 17.77 5.82 21.02 7 14.14 2 9.27 8.91 8.26 12 2" }) });
|
|
1796
|
+
}
|
|
1797
|
+
function HeartIcon({ size = 20, className, style } = {}) {
|
|
1798
|
+
return /* @__PURE__ */ jsxRuntime.jsx("svg", { ...defaultProps(size), className, style, children: /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M20.84 4.61a5.5 5.5 0 0 0-7.78 0L12 5.67l-1.06-1.06a5.5 5.5 0 0 0-7.78 7.78l1.06 1.06L12 21.23l7.78-7.78 1.06-1.06a5.5 5.5 0 0 0 0-7.78z" }) });
|
|
1799
|
+
}
|
|
1800
|
+
function EyeIcon({ size = 20, className, style } = {}) {
|
|
1801
|
+
return /* @__PURE__ */ jsxRuntime.jsxs("svg", { ...defaultProps(size), className, style, children: [
|
|
1802
|
+
/* @__PURE__ */ jsxRuntime.jsx("path", { d: "M1 12s4-8 11-8 11 8 11 8-4 8-11 8-11-8-11-8z" }),
|
|
1803
|
+
/* @__PURE__ */ jsxRuntime.jsx("circle", { cx: "12", cy: "12", r: "3" })
|
|
1804
|
+
] });
|
|
1805
|
+
}
|
|
1806
|
+
function EditIcon({ size = 20, className, style } = {}) {
|
|
1807
|
+
return /* @__PURE__ */ jsxRuntime.jsxs("svg", { ...defaultProps(size), className, style, children: [
|
|
1808
|
+
/* @__PURE__ */ jsxRuntime.jsx("path", { d: "M11 4H4a2 2 0 0 0-2 2v14a2 2 0 0 0 2 2h14a2 2 0 0 0 2-2v-7" }),
|
|
1809
|
+
/* @__PURE__ */ jsxRuntime.jsx("path", { d: "M18.5 2.5a2.121 2.121 0 0 1 3 3L12 15l-4 1 1-4 9.5-9.5z" })
|
|
1810
|
+
] });
|
|
1811
|
+
}
|
|
1812
|
+
function TrashIcon({ size = 20, className, style } = {}) {
|
|
1813
|
+
return /* @__PURE__ */ jsxRuntime.jsxs("svg", { ...defaultProps(size), className, style, children: [
|
|
1814
|
+
/* @__PURE__ */ jsxRuntime.jsx("polyline", { points: "3 6 5 6 21 6" }),
|
|
1815
|
+
/* @__PURE__ */ jsxRuntime.jsx("path", { d: "M19 6v14a2 2 0 0 1-2 2H7a2 2 0 0 1-2-2V6m3 0V4a2 2 0 0 1 2-2h4a2 2 0 0 1 2 2v2" }),
|
|
1816
|
+
/* @__PURE__ */ jsxRuntime.jsx("line", { x1: "10", y1: "11", x2: "10", y2: "17" }),
|
|
1817
|
+
/* @__PURE__ */ jsxRuntime.jsx("line", { x1: "14", y1: "11", x2: "14", y2: "17" })
|
|
1818
|
+
] });
|
|
1819
|
+
}
|
|
1604
1820
|
|
|
1821
|
+
exports.AlertTriangleIcon = AlertTriangleIcon;
|
|
1822
|
+
exports.BarChartIcon = BarChartIcon;
|
|
1823
|
+
exports.BellIcon = BellIcon2;
|
|
1824
|
+
exports.BuildingIcon = BuildingIcon;
|
|
1825
|
+
exports.CalendarIcon = CalendarIcon;
|
|
1826
|
+
exports.CheckCircleIcon = CheckCircleIcon;
|
|
1827
|
+
exports.ClipboardIcon = ClipboardIcon;
|
|
1828
|
+
exports.DatabaseIcon = DatabaseIcon;
|
|
1829
|
+
exports.DownloadIcon = DownloadIcon;
|
|
1830
|
+
exports.EditIcon = EditIcon;
|
|
1831
|
+
exports.EyeIcon = EyeIcon;
|
|
1605
1832
|
exports.FONT_SIZE_OPTIONS = FONT_SIZE_OPTIONS;
|
|
1833
|
+
exports.FileTextIcon = FileTextIcon;
|
|
1834
|
+
exports.FolderIcon = FolderIcon;
|
|
1606
1835
|
exports.FontSizeSettings = FontSizeSettings;
|
|
1836
|
+
exports.GearIcon = GearIcon2;
|
|
1837
|
+
exports.HeartIcon = HeartIcon;
|
|
1838
|
+
exports.HelpCircleIcon = HelpCircleIcon2;
|
|
1839
|
+
exports.HistoryIcon = HistoryIcon;
|
|
1840
|
+
exports.HomeIcon = HomeIcon;
|
|
1841
|
+
exports.LogOutIcon = LogOutIcon;
|
|
1842
|
+
exports.MailIcon = MailIcon;
|
|
1843
|
+
exports.MapPinIcon = MapPinIcon;
|
|
1844
|
+
exports.PhoneIcon = PhoneIcon;
|
|
1845
|
+
exports.PlusCircleIcon = PlusCircleIcon;
|
|
1846
|
+
exports.PrinterIcon = PrinterIcon;
|
|
1847
|
+
exports.SearchIcon = SearchIcon;
|
|
1607
1848
|
exports.SettingsPanel = SettingsPanel;
|
|
1608
1849
|
exports.SettingsProvider = SettingsProvider;
|
|
1850
|
+
exports.ShieldIcon = ShieldIcon;
|
|
1609
1851
|
exports.SidebarHeader = SidebarHeader;
|
|
1610
1852
|
exports.SidebarMenu = SidebarMenu;
|
|
1611
1853
|
exports.SidebarUserProfile = SidebarUserProfile;
|
|
1612
1854
|
exports.StaffSidebar = StaffSidebar;
|
|
1855
|
+
exports.StarIcon = StarIcon;
|
|
1613
1856
|
exports.ThemeSettings = ThemeSettings;
|
|
1857
|
+
exports.TrashIcon = TrashIcon;
|
|
1858
|
+
exports.UploadIcon = UploadIcon;
|
|
1614
1859
|
exports.UserHeader = UserHeader;
|
|
1860
|
+
exports.UserIcon = UserIcon;
|
|
1615
1861
|
exports.UserSidebar = UserSidebar;
|
|
1862
|
+
exports.UsersIcon = UsersIcon;
|
|
1863
|
+
exports.WrenchIcon = WrenchIcon;
|
|
1864
|
+
exports.XCircleIcon = XCircleIcon;
|
|
1616
1865
|
exports.useSettings = useSettings;
|
|
1617
1866
|
//# sourceMappingURL=index.js.map
|
|
1618
1867
|
//# sourceMappingURL=index.js.map
|