Skip to content

Commit

Permalink
Create LockedState component
Browse files Browse the repository at this point in the history
  • Loading branch information
btarver40 committed Dec 11, 2024
1 parent e9e63c3 commit b875211
Show file tree
Hide file tree
Showing 4 changed files with 29 additions and 0 deletions.
Empty file.
Empty file.
21 changes: 21 additions & 0 deletions easy-ui-react/src/LockedState/LockedStateCard.stories.tsx
Original file line number Diff line number Diff line change
@@ -0,0 +1,21 @@
// import React from "react";
// import { Meta, StoryObj } from "@storybook/react";
// import { LockedStateCard, LockedStateCardProps } from "./LockedStateCard";
// import { Button } from "../Button";
// import { PlaceholderBox } from "../utilities/storybook";

// type Story = StoryObj<typeof LockedStateCard>;

// const Template = (args: LockedStateCardProps) => {
// const { children, ...restArgs } = args;
// return <LockedStateCard {...restArgs}>{children}</LockedStateCard>;
// };

// const meta: Meta<typeof LockedStateCard> = {
// title: "Components/Cards/LockedStateCard",
// component: LockedStateCard,
// };

// export default meta;

// export const Simple: Story = {};
8 changes: 8 additions & 0 deletions easy-ui-react/src/LockedState/LockedStateCard.tsx
Original file line number Diff line number Diff line change
@@ -0,0 +1,8 @@
// import React, { ReactNode } from "react";
// import { Text, TextProps } from "../Text";
// import { Card, CardProps } from "../Card";
// import { Icon, IconSymbol } from "../Icon";
// import { Button, ButtonProps } from "../Button";
// import { VerticalStack, VerticalStackProps } from "../VerticalStack";
// import { HorizontalStack, HorizontalStackProps } from "../HorizontalStack";
// import { classNames } from "../utilities/css";

0 comments on commit b875211

Please sign in to comment.