Previews

1
2
3
4
5
6
7
8
9
10
11
12
13
14
# Tooltip with Primer::Beta::Button
render(Primer::Beta::Button.new(id: "button-with-tooltip")) do |component|
component.with_tooltip(text: tooltip_text, direction: direction)
"Button"
end
# Tooltip with Primer::Beta::Link
render(Primer::Beta::Link.new(href: "#link-with-tooltip", id: "link-with-tooltip", underline: true)) do |component|
component.with_tooltip(text: tooltip_text, direction: direction)
"Button"
end
# Tooltip with Primer::IconButton
render(Primer::Beta::IconButton.new(icon: :search, "aria-label": tooltip_text, tooltip_direction: direction))