-
Notifications
You must be signed in to change notification settings - Fork 69
Expand file tree
/
Copy pathsheet.html.erb
More file actions
26 lines (20 loc) · 901 Bytes
/
sheet.html.erb
File metadata and controls
26 lines (20 loc) · 901 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
<%= render_component_header title: "Sheet",
description: "Extends the Dialog component to display content that complements the main content of the screen." %>
<% content_for :preview, flush: true do %>
<div class="w-full flex justify-center">
<%= render_code_preview('sheet') %>
</div>
<% end %>
<% content_for :code, flush: true do %>
<div class="w-full flex justify-center">
<%= code_partial("sheet/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 sheet
<% 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("sheet/usage", :erb) %>
<%= render_usage("sheet") %>