Skip to content

Commit

Permalink
fix(number-input): incorrect import
Browse files Browse the repository at this point in the history
  • Loading branch information
wingkwong committed Jan 17, 2025
1 parent 4d02f08 commit 18d4cb1
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ import React from "react";
import {Meta} from "@storybook/react";
import {button} from "@heroui/theme";
import {Form} from "@heroui/form";
import {numberField} from "@heroui/theme";
import {numberInput} from "@heroui/theme";

import {NumberInput, NumberInputProps} from "../src";

Expand Down Expand Up @@ -60,7 +60,7 @@ export default {
} as Meta<typeof NumberInput>;

const defaultProps = {
...numberField.defaultVariants,
...numberInput.defaultVariants,
defaultValue: 24,
};

Expand Down

0 comments on commit 18d4cb1

Please sign in to comment.