powell-react 0.0.1

Sign up to get free protection for your applications and to get access to all the features.
@@ -0,0 +1,7 @@
1
+ import React from "react";
2
+ import "./Button.css";
3
+ export interface ButtonProps extends React.ButtonHTMLAttributes<HTMLButtonElement> {
4
+ variant?: "primary" | "secondary";
5
+ }
6
+ declare const Button: React.FC<ButtonProps>;
7
+ export default Button;
@@ -0,0 +1,2 @@
1
+ import Button from "./Button";
2
+ export default Button;
@@ -0,0 +1,2 @@
1
+ declare const Input: () => import("react/jsx-runtime").JSX.Element;
2
+ export default Input;
@@ -0,0 +1,2 @@
1
+ import Input from "./Input";
2
+ export default Input;
@@ -0,0 +1,2 @@
1
+ export { default as Button } from "./Button";
2
+ export { default as Input } from "./Input";
@@ -0,0 +1 @@
1
+ export * from "./components";