@livepeer/design-system 0.0.0-beta.0

Sign up to get free protection for your applications and to get access to all the features.
@@ -0,0 +1,4 @@
1
+ export declare const AccordionButton: any;
2
+ export declare const Accordion: any;
3
+ export declare const AccordionItem: any;
4
+ export declare const AccordionPanel: any;
@@ -0,0 +1,13 @@
1
+ import React from "react";
2
+ import * as AlertDialogPrimitive from "@radix-ui/react-alert-dialog";
3
+ declare type AlertDialogProps = React.ComponentProps<typeof AlertDialogPrimitive.Root> & {
4
+ children: React.ReactNode;
5
+ };
6
+ export declare function AlertDialog({ children, ...props }: AlertDialogProps): JSX.Element;
7
+ export declare const AlertDialogContent: ({ children, animation, ...props }: any) => JSX.Element;
8
+ export declare const AlertDialogTrigger: React.ForwardRefExoticComponent<AlertDialogPrimitive.AlertDialogTriggerProps & React.RefAttributes<HTMLButtonElement>>;
9
+ export declare const AlertDialogTitle: React.ForwardRefExoticComponent<AlertDialogPrimitive.AlertDialogTitleProps & React.RefAttributes<HTMLHeadingElement>>;
10
+ export declare const AlertDialogDescription: React.ForwardRefExoticComponent<AlertDialogPrimitive.AlertDialogDescriptionProps & React.RefAttributes<HTMLParagraphElement>>;
11
+ export declare const AlertDialogCancel: React.ForwardRefExoticComponent<AlertDialogPrimitive.AlertDialogCancelProps & React.RefAttributes<HTMLButtonElement>>;
12
+ export declare const AlertDialogAction: React.ForwardRefExoticComponent<AlertDialogPrimitive.AlertDialogActionProps & React.RefAttributes<HTMLButtonElement>>;
13
+ export {};