Sha256: 178573674f23ff437d9d0988cb0b4deb0ee33ceec2f07d930d494adca2597870
Contents?: true
Size: 918 Bytes
Versions: 70
Compression:
Stored size: 918 Bytes
Contents
# frozen_string_literal: true module Ariadne # Add a general description of component here # Add additional usage considerations or best practices that may aid the user to use the component correctly. # @accessibility Add any accessibility considerations class BodyComponent < Ariadne::Component DEFAULT_CLASSES = "ariadne-scroll-smooth ariadne-antialiased" # @example Default # # <%= render(Ariadne::BodyComponent.new) { "Example" } %> # # @param classes [String] <%= link_to_classes_docs %> # @param attributes [Hash] <%= link_to_attributes_docs %> def initialize(classes: "", attributes: {}) @tag = :body @classes = class_names( DEFAULT_CLASSES, classes, ) @attributes = attributes end def call render(Ariadne::BaseComponent.new(tag: @tag, classes: @classes, attributes: @attributes)) { content } end end end
Version data entries
70 entries across 70 versions & 1 rubygems