@arkitektbedriftene/fe-lib 5.7.2 → 5.8.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,19 @@
|
|
|
1
|
+
import { G as a } from "./iconBase-LROS5hdG.js";
|
|
2
|
+
function r(t) {
|
|
3
|
+
return a({ tag: "svg", attr: { viewBox: "0 0 512 512" }, child: [{ tag: "path", attr: { d: "M233.4 406.6c12.5 12.5 32.8 12.5 45.3 0l192-192c12.5-12.5 12.5-32.8 0-45.3s-32.8-12.5-45.3 0L256 338.7 86.6 169.4c-12.5-12.5-32.8-12.5-45.3 0s-12.5 32.8 0 45.3l192 192z" }, child: [] }] })(t);
|
|
4
|
+
}
|
|
5
|
+
function l(t) {
|
|
6
|
+
return a({ tag: "svg", attr: { viewBox: "0 0 576 512" }, child: [{ tag: "path", attr: { d: "M384 128c70.7 0 128 57.3 128 128s-57.3 128-128 128l-192 0c-70.7 0-128-57.3-128-128s57.3-128 128-128l192 0zM576 256c0-106-86-192-192-192L192 64C86 64 0 150 0 256S86 448 192 448l192 0c106 0 192-86 192-192zM192 352a96 96 0 1 0 0-192 96 96 0 1 0 0 192z" }, child: [] }] })(t);
|
|
7
|
+
}
|
|
8
|
+
function i(t) {
|
|
9
|
+
return a({ tag: "svg", attr: { viewBox: "0 0 576 512" }, child: [{ tag: "path", attr: { d: "M192 64C86 64 0 150 0 256S86 448 192 448l192 0c106 0 192-86 192-192s-86-192-192-192L192 64zm192 96a96 96 0 1 1 0 192 96 96 0 1 1 0-192z" }, child: [] }] })(t);
|
|
10
|
+
}
|
|
11
|
+
function g(t) {
|
|
12
|
+
return a({ tag: "svg", attr: { viewBox: "0 0 512 512" }, child: [{ tag: "path", attr: { d: "M406.5 399.6C387.4 352.9 341.5 320 288 320l-64 0c-53.5 0-99.4 32.9-118.5 79.6C69.9 362.2 48 311.7 48 256C48 141.1 141.1 48 256 48s208 93.1 208 208c0 55.7-21.9 106.2-57.5 143.6zm-40.1 32.7C334.4 452.4 296.6 464 256 464s-78.4-11.6-110.5-31.7c7.3-36.7 39.7-64.3 78.5-64.3l64 0c38.8 0 71.2 27.6 78.5 64.3zM256 512A256 256 0 1 0 256 0a256 256 0 1 0 0 512zm0-272a40 40 0 1 1 0-80 40 40 0 1 1 0 80zm-88-40a88 88 0 1 0 176 0 88 88 0 1 0 -176 0z" }, child: [] }] })(t);
|
|
13
|
+
}
|
|
14
|
+
export {
|
|
15
|
+
i as F,
|
|
16
|
+
l as a,
|
|
17
|
+
g as b,
|
|
18
|
+
r as c
|
|
19
|
+
};
|
|
@@ -7,4 +7,8 @@ interface DropdownProps {
|
|
|
7
7
|
align?: 'left' | 'right';
|
|
8
8
|
}
|
|
9
9
|
export declare function Dropdown({ trigger, children, align }: DropdownProps): import("react/jsx-runtime").JSX.Element;
|
|
10
|
+
export declare const DropdownToggleItem: import('react').ForwardRefExoticComponent<{
|
|
11
|
+
children: ReactNode;
|
|
12
|
+
enabled: boolean;
|
|
13
|
+
} & import('react').ButtonHTMLAttributes<HTMLButtonElement> & import('react').RefAttributes<HTMLButtonElement>>;
|
|
10
14
|
export {};
|