@ixo/ui 0.0.20 → 0.0.22

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.
@@ -2998,6 +2998,24 @@ function SlidersH({ className, color, size }) {
2998
2998
  ]
2999
2999
  });
3000
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
+ viewBox: "0 0 16 16",
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
+ }
3001
3019
  function SnowflakeSolid({ className, color, size }) {
3002
3020
  const theme = useUITheme();
3003
3021
  const fill = getElementColor(theme, color);
@@ -4162,6 +4180,7 @@ export {
4162
4180
  Slack,
4163
4181
  SlidersCircle,
4164
4182
  SlidersH,
4183
+ SlidersTwo,
4165
4184
  SnowflakeSolid,
4166
4185
  SortAlphaDownAltSolid,
4167
4186
  SortAlphaDownSolid,