cx 23.9.0 → 23.11.0

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,17 @@
1
+ import { VDOM } from "../../ui/Widget";
2
+ import { registerIcon } from "./registry";
3
+
4
+ export default registerIcon(
5
+ "pixel-picker",
6
+ (props) => {
7
+ return (
8
+ <svg {...props} viewBox="0 0 30 30">
9
+ <path
10
+ d="M27.7,3.3c-1.5-1.5-3.9-1.5-5.4,0L17,8.6l-1.3-1.3c-0.4-0.4-1-0.4-1.4,0s-0.4,1,0,1.4l1.3,1.3L5,20.6 c-0.6,0.6-1,1.4-1.1,2.3C3.3,23.4,3,24.2,3,25c0,1.7,1.3,3,3,3c0.8,0,1.6-0.3,2.2-0.9C9,27,9.8,26.6,10.4,26L21,15.4l1.3,1.3 c0.2,0.2,0.5,0.3,0.7,0.3s0.5-0.1,0.7-0.3c0.4-0.4,0.4-1,0-1.4L22.4,14l5.3-5.3C29.2,7.2,29.2,4.8,27.7,3.3z M9,24.6 c-0.4,0.4-0.8,0.6-1.3,0.5c-0.4,0-0.7,0.2-0.9,0.5C6.7,25.8,6.3,26,6,26c-0.6,0-1-0.4-1-1c0-0.3,0.2-0.7,0.5-0.8 c0.3-0.2,0.5-0.5,0.5-0.9c0-0.5,0.2-1,0.5-1.3L17,11.4l2.6,2.6L9,24.6z"
11
+ fill="currentColor"
12
+ />
13
+ </svg>
14
+ );
15
+ },
16
+ true
17
+ );
@@ -1,7 +1,7 @@
1
1
  import * as Cx from '../../core';
2
2
  import { DropdownProps } from './Dropdown';
3
3
 
4
- interface TooltipProps extends DropdownProps {
4
+ export interface TooltipProps extends DropdownProps {
5
5
 
6
6
  /** Text to be displayed inside the tooltip. */
7
7
  text?: Cx.StringProp,