-
Notifications
You must be signed in to change notification settings - Fork 68
Expand file tree
/
Copy pathselect.html.erb
More file actions
27 lines (21 loc) · 867 Bytes
/
select.html.erb
File metadata and controls
27 lines (21 loc) · 867 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
<%= render "layouts/documentation/component_header",
title: "Select",
description: "A standard but styled select component." %>
<% content_for :preview, flush: true do %>
<div class="w-full flex justify-center">
<%= render_code_preview('select') %>
</div>
<% end %>
<% content_for :code, flush: true do %>
<div class="w-full flex justify-center">
<%= code_partial("select/preview", :erb) %>
</div>
<% end %>
<%= render_preview %>
<h2 class="font-heading scroll-m-20 border-b pb-2 text-2xl font-semibold tracking-tight first:mt-0" id="installation">Installation</h2>
<%= code_sample(language: "sh") do %>
rails generate shadcn-ui select
<% end %>
<h2 class="font-heading mt-12 scroll-m-20 border-b pb-2 mb-2 text-2xl font-semibold tracking-tight first:mt-0" id="usage">Usage</h2>
<%= code_partial("select/usage", :erb) %>
<%= render_usage("select") %>