@artsy/palette-mobile 14.0.37 → 14.0.38

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.
@@ -0,0 +1,3 @@
1
+ /// <reference types="react" />
2
+ import { IconProps } from "./Icon";
3
+ export declare const SortIcon: ({ fill, ...restProps }: IconProps) => JSX.Element;
@@ -0,0 +1,7 @@
1
+ import { jsx as _jsx, jsxs as _jsxs } from "react/jsx-runtime";
2
+ import { Icon, Path } from "./Icon";
3
+ import { useColor } from "../utils/hooks";
4
+ export const SortIcon = ({ fill = "black100", ...restProps }) => {
5
+ const color = useColor();
6
+ return (_jsxs(Icon, { ...restProps, viewBox: "0 0 18 18", children: [_jsx(Path, { d: "M4.74201 4.42504L4.73353 14.4298L5.73338 14.4312L5.74257 4.42433L8.77818 7.45994L9.48529 6.75283L5.24265 2.51019L1 6.75283L1.70711 7.45994L4.74201 4.42504Z", fill: color(fill), fillRule: "nonzero" }), _jsx(Path, { d: "M13.2371 3.59102L13.2286 13.5958L16.2635 10.5609L16.9706 11.268L12.728 15.5106L8.48535 11.268L9.19246 10.5609L12.2281 13.5965L12.2373 3.58961L13.2371 3.59102Z", fill: color(fill), fillRule: "nonzero" })] }));
7
+ };
@@ -105,6 +105,7 @@ export * from "./ShieldIcon";
105
105
  export * from "./StarCircleFill";
106
106
  export * from "./StarCircleIcon";
107
107
  export * from "./Stopwatch";
108
+ export * from "./SortIcon";
108
109
  export * from "./Tag2Icon";
109
110
  export * from "./TagIcon";
110
111
  export * from "./TimerIcon";
@@ -105,6 +105,7 @@ export * from "./ShieldIcon";
105
105
  export * from "./StarCircleFill";
106
106
  export * from "./StarCircleIcon";
107
107
  export * from "./Stopwatch";
108
+ export * from "./SortIcon";
108
109
  export * from "./Tag2Icon";
109
110
  export * from "./TagIcon";
110
111
  export * from "./TimerIcon";
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@artsy/palette-mobile",
3
- "version": "14.0.37",
3
+ "version": "14.0.38",
4
4
  "description": "Artsy's design system for React Native",
5
5
  "scripts": {
6
6
  "android": "RCT_METRO_PORT=8082 react-native run-android --port 8082 --terminal terminal",