Previews

1
2
3
4
5
6
7
8
9
10
11
12
13
# Align right
render(Primer::Beta::AvatarStack.new(align: :right)) do |component|
component.with_avatar(src: Primer::ExampleImage::BASE64_SRC, alt: "@kittenuser")
component.with_avatar(src: Primer::ExampleImage::BASE64_SRC, alt: "@kittenuser")
component.with_avatar(src: Primer::ExampleImage::BASE64_SRC, alt: "@kittenuser")
end
# With tooltip
render(Primer::Beta::AvatarStack.new(tooltipped: true, body_arguments: { label: "This is a tooltip!" })) do |component|
component.with_avatar(src: Primer::ExampleImage::BASE64_SRC, alt: "@kittenuser")
component.with_avatar(src: Primer::ExampleImage::BASE64_SRC, alt: "@kittenuser")
component.with_avatar(src: Primer::ExampleImage::BASE64_SRC, alt: "@kittenuser")
end