defmodule Storybook.Components.MenuButton do
use PhoenixStorybook.Story, :component
def function, do: &Doggo.menu_button/1
def template do
"""
<.psb-variation/>
"""
end
def variations do
[
%Variation{
id: :default,
attributes: %{
controls: "actions-menu",
id: "actions-button"
},
slots: ["Actions"]
}
]
end
end