@cloudtower/eagle 0.27.25 → 0.27.28

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,39 @@
1
+ /// <reference types="react" />
2
+ import { Meta } from "@storybook/react";
3
+ import SegmentControl from "./";
4
+ declare const meta: Meta<typeof SegmentControl>;
5
+ export default meta;
6
+ export declare const Simple: {
7
+ docs: {
8
+ description: {
9
+ story: string;
10
+ };
11
+ };
12
+ args: {
13
+ options: string[];
14
+ };
15
+ };
16
+ export declare const SmallSize: {
17
+ docs: {
18
+ description: {
19
+ story: string;
20
+ };
21
+ };
22
+ args: {
23
+ size: string;
24
+ options: string[];
25
+ };
26
+ };
27
+ export declare const CustomRender: {
28
+ docs: {
29
+ description: {
30
+ story: string;
31
+ };
32
+ };
33
+ args: {
34
+ options: {
35
+ label: JSX.Element;
36
+ value: string;
37
+ }[];
38
+ };
39
+ };
@@ -0,0 +1,4 @@
1
+ /// <reference types="react" />
2
+ import { ISegmentedControlProps } from "../../spec/type";
3
+ declare const SegmentControl: (props: ISegmentedControlProps) => JSX.Element;
4
+ export default SegmentControl;