@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.
- package/dist/svgs/SortIcon.d.ts +3 -0
- package/dist/svgs/SortIcon.js +7 -0
- package/dist/svgs/index.d.ts +1 -0
- package/dist/svgs/index.js +1 -0
- package/package.json +1 -1
|
@@ -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
|
+
};
|
package/dist/svgs/index.d.ts
CHANGED
|
@@ -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/dist/svgs/index.js
CHANGED
|
@@ -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