@ixo/ui 0.0.19 → 0.0.20

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.
@@ -689,6 +689,41 @@ function CheckSquare({ className, color, size }) {
689
689
  ]
690
690
  });
691
691
  }
692
+ function CircleFilled({ className, color, size }) {
693
+ const theme = useUITheme.useUITheme();
694
+ const fill = UsersSolid.getElementColor(theme, color);
695
+ return icon.buildSvgIcon({
696
+ size,
697
+ className,
698
+ paths: [
699
+ {
700
+ d: "M10.0003 18.3327C14.6027 18.3327 18.3337 14.6017 18.3337 9.99935C18.3337 5.39698 14.6027 1.66602 10.0003 1.66602C5.39795 1.66602 1.66699 5.39698 1.66699 9.99935C1.66699 14.6017 5.39795 18.3327 10.0003 18.3327Z",
701
+ stroke: fill,
702
+ fill,
703
+ strokeWidth: "1.5",
704
+ strokeLinecap: "round",
705
+ strokeLinejoin: "round"
706
+ }
707
+ ]
708
+ });
709
+ }
710
+ function CircleOutline({ className, color, size }) {
711
+ const theme = useUITheme.useUITheme();
712
+ const fill = UsersSolid.getElementColor(theme, color);
713
+ return icon.buildSvgIcon({
714
+ size,
715
+ className,
716
+ paths: [
717
+ {
718
+ d: "M10.0003 18.3327C14.6027 18.3327 18.3337 14.6017 18.3337 9.99935C18.3337 5.39698 14.6027 1.66602 10.0003 1.66602C5.39795 1.66602 1.66699 5.39698 1.66699 9.99935C1.66699 14.6017 5.39795 18.3327 10.0003 18.3327Z",
719
+ stroke: fill,
720
+ strokeWidth: "1.5",
721
+ strokeLinecap: "round",
722
+ strokeLinejoin: "round"
723
+ }
724
+ ]
725
+ });
726
+ }
692
727
  function Clients({ className, color, size }) {
693
728
  const theme = useUITheme.useUITheme();
694
729
  const fill = UsersSolid.getElementColor(theme, color);
@@ -1841,6 +1876,23 @@ function ListSolid({ className, color, size }) {
1841
1876
  ]
1842
1877
  });
1843
1878
  }
1879
+ function LiveCall({ className, color, size }) {
1880
+ const theme = useUITheme.useUITheme();
1881
+ const fill = UsersSolid.getElementColor(theme, color);
1882
+ return icon.buildSvgIcon({
1883
+ size,
1884
+ className,
1885
+ paths: [
1886
+ {
1887
+ d: "M12 2V6M16.2 7.7999L19.1 4.8999M18 12H22M16.2 16.2L19.1 19.1M12 18V22M4.8999 19.1L7.7999 16.2M2 12H6M4.8999 4.8999L7.7999 7.7999",
1888
+ stroke: fill,
1889
+ strokeWidth: "1.5",
1890
+ strokeLinecap: "round",
1891
+ strokeLinejoin: "round"
1892
+ }
1893
+ ]
1894
+ });
1895
+ }
1844
1896
  function LockOpenSolid({ className, color, size }) {
1845
1897
  const theme = useUITheme.useUITheme();
1846
1898
  const fill = UsersSolid.getElementColor(theme, color);
@@ -1855,6 +1907,44 @@ function LockOpenSolid({ className, color, size }) {
1855
1907
  ]
1856
1908
  });
1857
1909
  }
1910
+ function LockOutline({ className, color, size }) {
1911
+ const theme = useUITheme.useUITheme();
1912
+ const fill = UsersSolid.getElementColor(theme, color);
1913
+ return icon.buildSvgIcon({
1914
+ size,
1915
+ className,
1916
+ paths: [
1917
+ {
1918
+ d: "M5.83333 9.16602V5.83268C5.83333 4.72761 6.27232 3.66781 7.05372 2.8864C7.83512 2.105 8.89493 1.66602 10 1.66602C11.1051 1.66602 12.1649 2.105 12.9463 2.8864C13.7277 3.66781 14.1667 4.72761 14.1667 5.83268V9.16602M4.16667 9.16602H15.8333C16.7538 9.16602 17.5 9.91221 17.5 10.8327V16.666C17.5 17.5865 16.7538 18.3327 15.8333 18.3327H4.16667C3.24619 18.3327 2.5 17.5865 2.5 16.666V10.8327C2.5 9.91221 3.24619 9.16602 4.16667 9.16602Z",
1919
+ stroke: fill,
1920
+ strokeWidth: "1.5",
1921
+ strokeLinecap: "round",
1922
+ strokeLinejoin: "round"
1923
+ }
1924
+ ]
1925
+ });
1926
+ }
1927
+ function LockFilled({ className, color, size }) {
1928
+ const theme = useUITheme.useUITheme();
1929
+ const fill = UsersSolid.getElementColor(theme, color);
1930
+ return icon.buildSvgIcon({
1931
+ size,
1932
+ className,
1933
+ paths: [
1934
+ {
1935
+ d: "M5.83333 9.16602V5.83268C5.83333 4.72761 6.27232 3.66781 7.05372 2.8864C7.83512 2.105 8.89493 1.66602 10 1.66602C11.1051 1.66602 12.1649 2.105 12.9463 2.8864C13.7277 3.66781 14.1667 4.72761 14.1667 5.83268V9.16602M4.16667 9.16602H15.8333C16.7538 9.16602 17.5 9.91221 17.5 10.8327V16.666C17.5 17.5865 16.7538 18.3327 15.8333 18.3327H4.16667C3.24619 18.3327 2.5 17.5865 2.5 16.666V10.8327C2.5 9.91221 3.24619 9.16602 4.16667 9.16602Z",
1936
+ stroke: fill,
1937
+ strokeWidth: "1.5",
1938
+ strokeLinecap: "round",
1939
+ strokeLinejoin: "round"
1940
+ },
1941
+ {
1942
+ d: "M15.8333 9.16602H4.16667C3.24619 9.16602 2.5 9.91221 2.5 10.8327V16.666C2.5 17.5865 3.24619 18.3327 4.16667 18.3327H15.8333C16.7538 18.3327 17.5 17.5865 17.5 16.666V10.8327C17.5 9.91221 16.7538 9.16602 15.8333 9.16602Z",
1943
+ fill
1944
+ }
1945
+ ]
1946
+ });
1947
+ }
1858
1948
  function LockSolid({ className, color, size }) {
1859
1949
  const theme = useUITheme.useUITheme();
1860
1950
  const fill = UsersSolid.getElementColor(theme, color);
@@ -3930,6 +4020,8 @@ exports.ChartBarSolid = ChartBarSolid;
3930
4020
  exports.ChartLineSolid = ChartLineSolid;
3931
4021
  exports.CheckBadge = CheckBadge;
3932
4022
  exports.CheckSquare = CheckSquare;
4023
+ exports.CircleFilled = CircleFilled;
4024
+ exports.CircleOutline = CircleOutline;
3933
4025
  exports.Clients = Clients;
3934
4026
  exports.ClockSolid = ClockSolid;
3935
4027
  exports.CloudSolid = CloudSolid;
@@ -4004,7 +4096,10 @@ exports.Link = Link;
4004
4096
  exports.Liquidity = Liquidity;
4005
4097
  exports.ListAlt = ListAlt;
4006
4098
  exports.ListSolid = ListSolid;
4099
+ exports.LiveCall = LiveCall;
4100
+ exports.LockFilled = LockFilled;
4007
4101
  exports.LockOpenSolid = LockOpenSolid;
4102
+ exports.LockOutline = LockOutline;
4008
4103
  exports.LockSolid = LockSolid;
4009
4104
  exports.MapMarkedAltSolid = MapMarkedAltSolid;
4010
4105
  exports.MapMarkerSolid = MapMarkerSolid;