Sha256: c750877bfccd7e92e119b58bbc297a43eb112098aabe3e9e70982c2c005f79b9

Contents?: true

Size: 1.19 KB

Versions: 3

Compression:

Stored size: 1.19 KB

Contents

module Components::ButtonHelper
  def render_button(label = "", text: nil, variant: :default, as: :button, href: nil, data: {}, **options, &block)
    button_classes = " inline-flex items-center justify-center rounded-md text-sm font-medium ring-offset-background transition-colors focus-visible:outline-none focus-visible:ring-2 focus-visible:ring-ring focus-visible:ring-offset-2 disabled:pointer-events-none disabled:opacity-50 h-10 px-4 py-2 "
    variant_classes = case variant.to_sym
    when :default
      " bg-primary text-primary-foreground hover:bg-primary/90 "
    when :secondary
      " bg-secondary text-secondary-foreground hover:bg-secondary/80 "
    when :error, :danger, :alert, :destructive
      " bg-destructive text-destructive-foreground hover:bg-destructive/90 "
    when :outline
      "  border border-input bg-background hover:bg-accent hover:text-accent-foreground"
    when :ghost
      " hover:bg-accent hover:text-accent-foreground  "
    end
    button_classes = tw(button_classes, variant_classes, options[:class])

    text = label if label.present?
    text = capture(&block) if block
    render "components/ui/button", text:, button_classes:, as:, href:, data:, **options
  end
end

Version data entries

3 entries across 3 versions & 1 rubygems

Version Path
shadcn-ui-0.0.15 app/helpers/components/button_helper.rb
shadcn-ui-0.0.14 app/helpers/components/button_helper.rb
shadcn-ui-0.0.13 app/helpers/components/button_helper.rb