This component is a dumb wrapper around the
<input /> element which justs add a class name to give it is
diff --git a/stories/components/Select.stories.tsx b/stories/components/Select.stories.tsx
index b020f4d95..171e69f0d 100644
--- a/stories/components/Select.stories.tsx
+++ b/stories/components/Select.stories.tsx
@@ -1,6 +1,8 @@
import React, { useState } from 'react'
-import Select from '../../src/components/select'
+import Select from '../../src/components/deprecated-select'
+import { Alert } from '../../src/new-components/alert'
+import { Stack } from '../../src/new-components/stack'
const options = [
{ value: 'intro', text: 'Select a fruit', disabled: true },
@@ -31,9 +33,14 @@ export const SelectStory = () => {
}
return (
-