Skip to content

Commit

Permalink
refactor: Move formatter to utils
Browse files Browse the repository at this point in the history
  • Loading branch information
arkarlov committed Sep 15, 2024
1 parent 2fe9603 commit fdcbc11
Show file tree
Hide file tree
Showing 4 changed files with 2 additions and 3 deletions.
1 change: 0 additions & 1 deletion src/formatters/index.ts

This file was deleted.

3 changes: 1 addition & 2 deletions src/stringifyCSSProperties.ts
Original file line number Diff line number Diff line change
@@ -1,6 +1,5 @@
import { type CSSProperties } from "react";
import { camelToKebab } from "./formatters";
import { applyCssUnits } from "./utils";
import { applyCssUnits, camelToKebab } from "./utils";

export function stringifyCSSProperties(
cssProperties: CSSProperties,
Expand Down
File renamed without changes.
1 change: 1 addition & 0 deletions src/utils/index.ts
Original file line number Diff line number Diff line change
@@ -1,2 +1,3 @@
export * from "./camelToKebab";
export * from "./isUnitless";
export * from "./applyCssUnits";

0 comments on commit fdcbc11

Please sign in to comment.