Sha256: 2b0c0d4cef71897a07b61bce1e178b6d7e6a58bac88a7557a7c4f4218667fbae
Contents?: true
Size: 704 Bytes
Versions: 39
Compression:
Stored size: 704 Bytes
Contents
# frozen_string_literal: true module Playbook module PbDialog class DialogHeader include Playbook::Props partial "pb_dialog/child_kits/dialog_header" prop :closeable, type: Playbook::Props::Boolean, default: true prop :padding prop :separator, type: Playbook::Props::Boolean, default: true prop :spacing prop :text prop :title def dialog_header_options { id: id, closeable: closeable, padding: padding, separator: separator, spacing: spacing, text: text, title: title, } end end end end
Version data entries
39 entries across 39 versions & 1 rubygems