diff --git a/packages/shoreline/src/components/textarea/stories/examples.stories.tsx b/packages/shoreline/src/components/textarea/stories/examples.stories.tsx
index b5879dca91..07485add81 100644
--- a/packages/shoreline/src/components/textarea/stories/examples.stories.tsx
+++ b/packages/shoreline/src/components/textarea/stories/examples.stories.tsx
@@ -1,8 +1,7 @@
-import './style.css'
import React from 'react'
-import { Textarea } from '../index'
import { Stack } from '../../stack'
+import { Textarea } from '../index'
export default {
title: 'components/textarea',
@@ -15,63 +14,30 @@ export function NoResize() {
const [value, setValue] = React.useState('')
return (
- <>
-
-
-
-
+
+
+
+
+
- >
+
)
}
export function FormField() {
const [value, setValue] = React.useState('')
- return (
-
- )
+ return
}
export function LongText() {
@@ -79,20 +45,9 @@ export function LongText() {
return (
-
+
-
+
)
}
diff --git a/packages/shoreline/src/components/textarea/stories/show.stories.tsx b/packages/shoreline/src/components/textarea/stories/show.stories.tsx
index 980fb94a8d..27be57eb3f 100644
--- a/packages/shoreline/src/components/textarea/stories/show.stories.tsx
+++ b/packages/shoreline/src/components/textarea/stories/show.stories.tsx
@@ -1,6 +1,6 @@
-import './style.css'
import React from 'react'
+import { Stack } from '../../stack'
import { Textarea } from '../index'
export default {
@@ -11,47 +11,14 @@ export function Show() {
const [value, setValue] = React.useState('')
return (
- <>
-
-
-
-
-
-
-
- >
+
+
+
+
+
+
+
+
+
)
}
diff --git a/packages/shoreline/src/components/textarea/stories/style.css b/packages/shoreline/src/components/textarea/stories/style.css
deleted file mode 100644
index f2d024ef54..0000000000
--- a/packages/shoreline/src/components/textarea/stories/style.css
+++ /dev/null
@@ -1,3 +0,0 @@
-.textarea-container {
- margin: 1.625rem;
-}