@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.
@@ -688,6 +688,41 @@ function CheckSquare({ className, color, size }) {
688
688
  ]
689
689
  });
690
690
  }
691
+ function CircleFilled({ className, color, size }) {
692
+ const theme = useUITheme();
693
+ const fill = getElementColor(theme, color);
694
+ return buildSvgIcon({
695
+ size,
696
+ className,
697
+ paths: [
698
+ {
699
+ 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",
700
+ stroke: fill,
701
+ fill,
702
+ strokeWidth: "1.5",
703
+ strokeLinecap: "round",
704
+ strokeLinejoin: "round"
705
+ }
706
+ ]
707
+ });
708
+ }
709
+ function CircleOutline({ className, color, size }) {
710
+ const theme = useUITheme();
711
+ const fill = getElementColor(theme, color);
712
+ return buildSvgIcon({
713
+ size,
714
+ className,
715
+ paths: [
716
+ {
717
+ 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",
718
+ stroke: fill,
719
+ strokeWidth: "1.5",
720
+ strokeLinecap: "round",
721
+ strokeLinejoin: "round"
722
+ }
723
+ ]
724
+ });
725
+ }
691
726
  function Clients({ className, color, size }) {
692
727
  const theme = useUITheme();
693
728
  const fill = getElementColor(theme, color);
@@ -1840,6 +1875,23 @@ function ListSolid({ className, color, size }) {
1840
1875
  ]
1841
1876
  });
1842
1877
  }
1878
+ function LiveCall({ className, color, size }) {
1879
+ const theme = useUITheme();
1880
+ const fill = getElementColor(theme, color);
1881
+ return buildSvgIcon({
1882
+ size,
1883
+ className,
1884
+ paths: [
1885
+ {
1886
+ 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",
1887
+ stroke: fill,
1888
+ strokeWidth: "1.5",
1889
+ strokeLinecap: "round",
1890
+ strokeLinejoin: "round"
1891
+ }
1892
+ ]
1893
+ });
1894
+ }
1843
1895
  function LockOpenSolid({ className, color, size }) {
1844
1896
  const theme = useUITheme();
1845
1897
  const fill = getElementColor(theme, color);
@@ -1854,6 +1906,44 @@ function LockOpenSolid({ className, color, size }) {
1854
1906
  ]
1855
1907
  });
1856
1908
  }
1909
+ function LockOutline({ className, color, size }) {
1910
+ const theme = useUITheme();
1911
+ const fill = getElementColor(theme, color);
1912
+ return buildSvgIcon({
1913
+ size,
1914
+ className,
1915
+ paths: [
1916
+ {
1917
+ 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",
1918
+ stroke: fill,
1919
+ strokeWidth: "1.5",
1920
+ strokeLinecap: "round",
1921
+ strokeLinejoin: "round"
1922
+ }
1923
+ ]
1924
+ });
1925
+ }
1926
+ function LockFilled({ className, color, size }) {
1927
+ const theme = useUITheme();
1928
+ const fill = getElementColor(theme, color);
1929
+ return buildSvgIcon({
1930
+ size,
1931
+ className,
1932
+ paths: [
1933
+ {
1934
+ 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",
1935
+ stroke: fill,
1936
+ strokeWidth: "1.5",
1937
+ strokeLinecap: "round",
1938
+ strokeLinejoin: "round"
1939
+ },
1940
+ {
1941
+ 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",
1942
+ fill
1943
+ }
1944
+ ]
1945
+ });
1946
+ }
1857
1947
  function LockSolid({ className, color, size }) {
1858
1948
  const theme = useUITheme();
1859
1949
  const fill = getElementColor(theme, color);
@@ -2908,6 +2998,23 @@ function SlidersH({ className, color, size }) {
2908
2998
  ]
2909
2999
  });
2910
3000
  }
3001
+ function SlidersTwo({ className, color, size }) {
3002
+ const theme = useUITheme();
3003
+ const fill = getElementColor(theme, color);
3004
+ return buildSvgIcon({
3005
+ size,
3006
+ className,
3007
+ paths: [
3008
+ {
3009
+ 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",
3010
+ stroke: fill,
3011
+ strokeWidth: "2",
3012
+ strokeLinecap: "round",
3013
+ strokeLinejoin: "round"
3014
+ }
3015
+ ]
3016
+ });
3017
+ }
2911
3018
  function SnowflakeSolid({ className, color, size }) {
2912
3019
  const theme = useUITheme();
2913
3020
  const fill = getElementColor(theme, color);
@@ -3884,6 +3991,8 @@ export {
3884
3991
  W as CheckCircle,
3885
3992
  a as CheckSolid,
3886
3993
  CheckSquare,
3994
+ CircleFilled,
3995
+ CircleOutline,
3887
3996
  m as Claims,
3888
3997
  a2 as ClaimsW,
3889
3998
  Clients,
@@ -3983,8 +4092,11 @@ export {
3983
4092
  Liquidity,
3984
4093
  ListAlt,
3985
4094
  ListSolid,
4095
+ LiveCall,
3986
4096
  L as Loading,
4097
+ LockFilled,
3987
4098
  LockOpenSolid,
4099
+ LockOutline,
3988
4100
  LockSolid,
3989
4101
  MapMarkedAltSolid,
3990
4102
  MapMarkerSolid,
@@ -4067,6 +4179,7 @@ export {
4067
4179
  Slack,
4068
4180
  SlidersCircle,
4069
4181
  SlidersH,
4182
+ SlidersTwo,
4070
4183
  SnowflakeSolid,
4071
4184
  SortAlphaDownAltSolid,
4072
4185
  SortAlphaDownSolid,