@ixo/ui 0.0.20 → 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.
@@ -2999,6 +2999,23 @@ function SlidersH({ className, color, size }) {
2999
2999
  ]
3000
3000
  });
3001
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
+ }
3002
3019
  function SnowflakeSolid({ className, color, size }) {
3003
3020
  const theme = useUITheme.useUITheme();
3004
3021
  const fill = UsersSolid.getElementColor(theme, color);
@@ -4169,6 +4186,7 @@ exports.SignX = SignX;
4169
4186
  exports.Slack = Slack;
4170
4187
  exports.SlidersCircle = SlidersCircle;
4171
4188
  exports.SlidersH = SlidersH;
4189
+ exports.SlidersTwo = SlidersTwo;
4172
4190
  exports.SnowflakeSolid = SnowflakeSolid;
4173
4191
  exports.SortAlphaDownAltSolid = SortAlphaDownAltSolid;
4174
4192
  exports.SortAlphaDownSolid = SortAlphaDownSolid;