Skip to content
This repository has been archived by the owner on Jun 12, 2023. It is now read-only.

Commit

Permalink
chore: playground
Browse files Browse the repository at this point in the history
  • Loading branch information
Zolyn committed May 8, 2022
1 parent b077b12 commit 651b608
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions playground/src/other-types.ts
Original file line number Diff line number Diff line change
@@ -1,9 +1,9 @@
import { MoreColors, BaseProps } from '~/test';

export enum Size {
Small = 'small',
Medium = 'medium',
Large = 'large',
Small,
Medium,
Large,
}

export type Color = 'blue' | 'red' | MoreColors;
Expand All @@ -19,6 +19,6 @@ interface Props extends BaseProps {

export interface ButtonProps extends Props {
color: Color;
co: Color;
co: Size;
size: BaseProps;
}

0 comments on commit 651b608

Please sign in to comment.