Skip to content

Commit

Permalink
first working glass examples
Browse files Browse the repository at this point in the history
  • Loading branch information
tsamantanis committed Feb 26, 2021
1 parent 223473b commit 0657e06
Show file tree
Hide file tree
Showing 38,717 changed files with 504 additions and 5,721,974 deletions.
The diff you're trying to view is too large. We only load the first 3000 changed files.
7 changes: 7 additions & 0 deletions dist/Button/index.d.ts
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@
/// <reference types="react" />
export interface ButtonProps {
text?: string;
onClick?: () => void;
}
declare const _default: (props: ButtonProps) => JSX.Element;
export default _default;
6 changes: 6 additions & 0 deletions dist/Button/styles.d.ts
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
interface ButtonProps {
border?: boolean;
blur?: number;
}
declare const Button: import("styled-components").StyledComponent<"button", any, ButtonProps, never>;
export default Button;
8 changes: 8 additions & 0 deletions dist/Card/index.d.ts
Original file line number Diff line number Diff line change
@@ -0,0 +1,8 @@
import * as React from 'react';
interface CardProps {
border?: boolean;
blur?: number;
content?: HTMLElement;
}
declare const Card: React.FC<CardProps>;
export default Card;
6 changes: 6 additions & 0 deletions dist/Card/styles.d.ts
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
interface StyledCardProps {
border?: boolean;
blur?: number;
}
declare const StyledCard: import("styled-components").StyledComponent<"div", any, StyledCardProps, never>;
export default StyledCard;
1 change: 1 addition & 0 deletions dist/Card/tools.d.ts
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
export declare const selectBoxSize: (size: string) => string;
9 changes: 3 additions & 6 deletions dist/index.d.ts
Original file line number Diff line number Diff line change
@@ -1,6 +1,3 @@
/// <reference types="react" />
interface Props {
text: string;
}
export declare const ExampleComponent: ({ text }: Props) => JSX.Element;
export {};
import Card from "./Card";
import Button from "./Button";
export { Card, Button };
52 changes: 45 additions & 7 deletions dist/index.js

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion dist/index.js.map

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

50 changes: 41 additions & 9 deletions dist/index.modern.js

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion dist/index.modern.js.map

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

1 change: 0 additions & 1 deletion example/node_modules/.bin/browserslist

This file was deleted.

1 change: 0 additions & 1 deletion example/node_modules/.bin/jsesc

This file was deleted.

1 change: 0 additions & 1 deletion example/node_modules/.bin/json5

This file was deleted.

1 change: 0 additions & 1 deletion example/node_modules/.bin/parser

This file was deleted.

1 change: 0 additions & 1 deletion example/node_modules/.bin/react-scripts

This file was deleted.

1 change: 0 additions & 1 deletion example/node_modules/.bin/semver

This file was deleted.

1 change: 0 additions & 1 deletion example/node_modules/.cache/.eslintcache

This file was deleted.

This file was deleted.

This file was deleted.

Loading

0 comments on commit 0657e06

Please sign in to comment.