Skip to content

Commit

Permalink
Renaming into camelCase.
Browse files Browse the repository at this point in the history
  • Loading branch information
ser888gio committed Nov 5, 2024
1 parent c9b40a2 commit 57f4194
Show file tree
Hide file tree
Showing 3 changed files with 8 additions and 8 deletions.
2 changes: 1 addition & 1 deletion packages/design-system/src/badge.tsx
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
import React from "react";
import { cva } from "class-variance-authority";
import { BadgeStarIcon } from "./icons/BadgeStarIcon";
import { BadgeStarIcon } from "./icons/badgeStarIcon";

export interface BadgeProps {
icon?: boolean;
Expand Down
12 changes: 6 additions & 6 deletions packages/design-system/src/index.ts
Original file line number Diff line number Diff line change
@@ -1,9 +1,9 @@
export * from "./heading";
export * from "./demo";

export * from "./icons/BadgeStarIcon";
export * from "./icons/ClearIcon";
export * from "./icons/SearchIcon";
export * from "./icons/HomeIcon";
export * from "./icons/ErrorIcon";
export * from "./icons/ChevronDown";
export * from "./icons/badgeStarIcon";
export * from "./icons/clearIcon";
export * from "./icons/searchIcon";
export * from "./icons/homeIcon";
export * from "./icons/errorIcon";
export * from "./icons/chevronDown";
2 changes: 1 addition & 1 deletion packages/design-system/src/ui/input/combobox.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ import {
useEffect,
} from "react";
import { ClearButton } from "./clearButton";
import { ChevronDownIcon } from "../../icons/ChevronDown";
import { ChevronDownIcon } from "../../icons/chevronDown";
import { Option } from "./comboboxOption";

interface ComboboxProps
Expand Down

0 comments on commit 57f4194

Please sign in to comment.