From 69e319d4ba833618d8b796814c5cf44932110371 Mon Sep 17 00:00:00 2001 From: Jakob Skjerning Date: Tue, 16 Dec 2025 10:57:06 +0100 Subject: [PATCH] Update README examples for Flowbite 4 The color style names were replaced in flowbite-components v0.1.4 with the Flowbite 4 style semantic names. --- README.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index 3b4b8f6..26315e7 100644 --- a/README.md +++ b/README.md @@ -91,12 +91,12 @@ If you want to use one of the other [Flowbite themes](https://flowbite.com/docs/ <% end %> -<%= render Flowbite::Button::Outline.new(style: :blue) do %> +<%= render Flowbite::Button::Outline.new(style: :success) do %> Outline Button <% end %> -<%= render Flowbite::Button::Pill.new(style: :green) do %> +<%= render Flowbite::Button::Pill.new(style: :danger) do %> Pill Button <% end %> ```