From d55813fffbe1e6576aade862f5fe722abdfffa41 Mon Sep 17 00:00:00 2001 From: modmuss50 Date: Tue, 19 Apr 2022 13:55:00 +0100 Subject: [PATCH] Fix placeholder capitalisation (#731) --- docs/components/input.md | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/docs/components/input.md b/docs/components/input.md index adf94ead6..499c9ca79 100644 --- a/docs/components/input.md +++ b/docs/components/input.md @@ -145,11 +145,11 @@ const App = () => ( The `type` attribute controls the type of input the browser renders. ```html preview - +
- +
- + ``` ```jsx react @@ -157,11 +157,11 @@ import { SlInput } from '@shoelace-style/shoelace/dist/react'; const App = () => ( <> - +
- +
- + ); ```