diff --git a/packages/react/src/components/TextField/TextField.story.tsx b/packages/react/src/components/TextField/TextField.story.tsx index 1a11c6c3c..d91f5b6ee 100644 --- a/packages/react/src/components/TextField/TextField.story.tsx +++ b/packages/react/src/components/TextField/TextField.story.tsx @@ -37,6 +37,26 @@ const Container = styled.div` export const Default = {} +export const Number: StoryObj = { + render: function Render(args) { + const [count, setCount] = useState(0) + return ( + + setCount(parseInt(value))} + onWheel={(e) => { + e.currentTarget.blur() + e.stopPropagation() + }} + /> + + ) + }, +} + export const HasLabel = { args: { showLabel: true,