Skip to content

Commit

Permalink
updated file structure and imports
Browse files Browse the repository at this point in the history
  • Loading branch information
mewdev committed Nov 4, 2024
1 parent bdad52d commit e068464
Show file tree
Hide file tree
Showing 5 changed files with 5 additions and 3 deletions.
2 changes: 1 addition & 1 deletion apps/design-system/stories/card.stories.tsx
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
import type { Meta, StoryObj } from "@storybook/react";

import { Card } from "@repo/design-system/card";
import { Card } from "@repo/design-system/ui";

const meta: Meta<typeof Card> = {
title: "Components/Card",
Expand Down
4 changes: 2 additions & 2 deletions packages/design-system/src/ui/button/button.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ const buttonVariants = cva(
variants: {
kind: {
filled:
"k1-p-4 data-[active]:k1-bg-primary-strong-active data-[disabled]:k1-bg-neutral-disaled",
"k1-p-4 data-[active]:k1-bg-primary-strong-active data-[disabled]:k1-bg-neutral-disabled",
inverse: "k1-border-2 k1-bg-transparent k1-p-4 k1-gap-4",
outline: "k1-border-2 k1-bg-transparent k1-p-4",
link: [
Expand All @@ -42,7 +42,7 @@ const buttonVariants = cva(
secondary: [
"k1-bg-secondary-strong",
"data-[hover]:k1-bg-secondary-strong-hover",
"data-[disabled]:k1-bg-neutral-disaled",
"data-[disabled]:k1-bg-neutral-disabled",
],
neutral: [
"k1-border-2 k1-text-neutral k1-border-neutral-strong",
Expand Down
File renamed without changes.
1 change: 1 addition & 0 deletions packages/design-system/src/ui/card/index.ts
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
export * from "./card";
1 change: 1 addition & 0 deletions packages/design-system/src/ui/index.ts
Original file line number Diff line number Diff line change
@@ -1,2 +1,3 @@
export * from "./input/index";
export * from "./button/index";
export * from "./card/index";

0 comments on commit e068464

Please sign in to comment.