Skip to content

Commit

Permalink
fix
Browse files Browse the repository at this point in the history
  • Loading branch information
aeharding committed Nov 15, 2024
1 parent dde771a commit 76bf2e0
Showing 1 changed file with 1 addition and 3 deletions.
4 changes: 1 addition & 3 deletions src/helpers/sv.ts
Original file line number Diff line number Diff line change
@@ -1,6 +1,4 @@
import { Falsey } from "lodash";

type CssVariables = Falsey | Record<string, unknown>;
type CssVariables = undefined | null | "" | 0 | Record<string, unknown>;

export default function sv(variables: CssVariables) {
if (!variables) return {};
Expand Down

0 comments on commit 76bf2e0

Please sign in to comment.