Sha256: 61945cb34c0954e759087ee6bcc0573dfa8fa7fec8c373afa8a11e7ee1053f0b
Contents?: true
Size: 649 Bytes
Versions: 150
Compression:
Stored size: 649 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
150 entries across 150 versions & 1 rubygems