Sha256: c506d24f8a0111e8c088cbd6714e704342701000ab3e955aa241e9fa48ca45ff
Contents?: true
Size: 543 Bytes
Versions: 20
Compression:
Stored size: 543 Bytes
Contents
# typed: false # frozen_string_literal: true module Ariadne module UI module Card module Body class Component < Ariadne::BaseComponent accepts_html_attributes do |html_attrs| html_attrs[:class] = Ariadne::ViewComponents.tailwind_merger.merge([style, html_attrs[:class]].join(" ")) end style do base do [ "ariadne-p-6", "ariadne-pt-0", ] end end end end end end end
Version data entries
20 entries across 20 versions & 1 rubygems