Previews

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
<%= render(Primer::BaseComponent.new(tag: :div, flex_items: :center, display: :flex)) do %>
<%= render(Primer::Alpha::TextField.new(
name: "message",
placeholder: "What's happening?",
label: "What is your current status?",
classes: "rounded-right-0",
visually_hide_label: true,
value: "Some value",
inset: true,
)) %>
<%= render(Primer::Beta::IconButton.new(
classes: "rounded-left-0 border-left-0",
icon: :smiley,
aria: { label: "Emoji" }
)
) %>
<% end %>