@ixo/ui 0.0.19 → 0.0.21

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);
@@ -2909,6 +2999,23 @@ function SlidersH({ className, color, size }) {
2909
2999
  ]
2910
3000
  });
2911
3001
  }
3002
+ function SlidersTwo({ className, color, size }) {
3003
+ const theme = useUITheme.useUITheme();
3004
+ const fill = UsersSolid.getElementColor(theme, color);
3005
+ return icon.buildSvgIcon({
3006
+ size,
3007
+ className,
3008
+ paths: [
3009
+ {
3010
+ d: "M13.3332 4.66699H7.33317M9.33317 11.3337H3.33317M9.33317 11.3337C9.33317 12.4382 10.2286 13.3337 11.3332 13.3337C12.4377 13.3337 13.3332 12.4382 13.3332 11.3337C13.3332 10.2291 12.4377 9.33366 11.3332 9.33366C10.2286 9.33366 9.33317 10.2291 9.33317 11.3337ZM6.6665 4.66699C6.6665 5.77156 5.77107 6.66699 4.6665 6.66699C3.56193 6.66699 2.6665 5.77156 2.6665 4.66699C2.6665 3.56242 3.56193 2.66699 4.6665 2.66699C5.77107 2.66699 6.6665 3.56242 6.6665 4.66699Z",
3011
+ stroke: fill,
3012
+ strokeWidth: "2",
3013
+ strokeLinecap: "round",
3014
+ strokeLinejoin: "round"
3015
+ }
3016
+ ]
3017
+ });
3018
+ }
2912
3019
  function SnowflakeSolid({ className, color, size }) {
2913
3020
  const theme = useUITheme.useUITheme();
2914
3021
  const fill = UsersSolid.getElementColor(theme, color);
@@ -3930,6 +4037,8 @@ exports.ChartBarSolid = ChartBarSolid;
3930
4037
  exports.ChartLineSolid = ChartLineSolid;
3931
4038
  exports.CheckBadge = CheckBadge;
3932
4039
  exports.CheckSquare = CheckSquare;
4040
+ exports.CircleFilled = CircleFilled;
4041
+ exports.CircleOutline = CircleOutline;
3933
4042
  exports.Clients = Clients;
3934
4043
  exports.ClockSolid = ClockSolid;
3935
4044
  exports.CloudSolid = CloudSolid;
@@ -4004,7 +4113,10 @@ exports.Link = Link;
4004
4113
  exports.Liquidity = Liquidity;
4005
4114
  exports.ListAlt = ListAlt;
4006
4115
  exports.ListSolid = ListSolid;
4116
+ exports.LiveCall = LiveCall;
4117
+ exports.LockFilled = LockFilled;
4007
4118
  exports.LockOpenSolid = LockOpenSolid;
4119
+ exports.LockOutline = LockOutline;
4008
4120
  exports.LockSolid = LockSolid;
4009
4121
  exports.MapMarkedAltSolid = MapMarkedAltSolid;
4010
4122
  exports.MapMarkerSolid = MapMarkerSolid;
@@ -4074,6 +4186,7 @@ exports.SignX = SignX;
4074
4186
  exports.Slack = Slack;
4075
4187
  exports.SlidersCircle = SlidersCircle;
4076
4188
  exports.SlidersH = SlidersH;
4189
+ exports.SlidersTwo = SlidersTwo;
4077
4190
  exports.SnowflakeSolid = SnowflakeSolid;
4078
4191
  exports.SortAlphaDownAltSolid = SortAlphaDownAltSolid;
4079
4192
  exports.SortAlphaDownSolid = SortAlphaDownSolid;