@sinco/react 1.0.8 → 1.0.9

Sign up to get free protection for your applications and to get access to all the features.
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@sinco/react",
3
- "version": "1.0.8",
3
+ "version": "1.0.9",
4
4
  "description": "package for the configuration of mui react sinco",
5
5
  "private": false,
6
6
  "license": "MIT",
@@ -0,0 +1,12 @@
1
+ import React, { ReactNode } from "react";
2
+ export type Anchor = "left" | "right";
3
+ export interface DrawerComponentProps {
4
+ titulo: string;
5
+ children: ReactNode;
6
+ acciones: ReactNode;
7
+ open: boolean;
8
+ onClose: () => void;
9
+ anchor?: Anchor;
10
+ }
11
+ declare const DrawerComponent: React.FC<DrawerComponentProps>;
12
+ export default DrawerComponent;
@@ -1 +1,2 @@
1
1
  export * from './EmptyState';
2
+ export * from './Drawer';