Sha256: c245191aa9013b333314eed75906779caac06ccfd79ed9e5ca4a073465a2b6e8

Contents?: true

Size: 1.17 KB

Versions: 11

Compression:

Stored size: 1.17 KB

Contents

# frozen_string_literal: true

module UiBibz::Helpers::Ui::Core::IconsHelper
  # Glyph Component
  #
  # + content+ (String || Hash) [Required]
  # +options+ (Hash)
  # +html_options+ (Hash)
  #
  # Glyph component with some exeption, it can be written
  # => glyph 'calendar', size: :xs
  # or
  # => glyph { name: 'calendar', size: :xs }
  def ui_glyph(content, options = nil, html_options = nil, &)
    UiBibz::Ui::Core::Icons::Glyph.new(content, options, html_options, &).render
  end

  # Glyph Group Component
  #
  # + content+ (String || Hash) [Required]
  # +options+ (Hash)
  # +html_options+ (Hash)
  #
  def ui_glyph_group(content = nil, options = nil, html_options = nil, &)
    UiBibz::Ui::Core::Icons::GlyphGroup.new(content, options, html_options).tap(&).render
  end

  # Glyph Changer
  #
  # +options+ (Hash)
  #
  def ui_glyph_or_glyph_group(glyph_options, options = {})
    UiBibz::Utils::GlyphChanger.new(glyph_options, options).render
  end

  # Stars Component
  #
  # +options+ (Hash)
  # +html_options+ (Hash)
  def ui_star(content = nil, options = nil, html_options = nil, &)
    UiBibz::Ui::Core::Icons::Star.new(content, options, html_options, &).render
  end
end

Version data entries

11 entries across 11 versions & 1 rubygems

Version Path
ui_bibz-4.0.0.beta16 lib/ui_bibz/helpers/ui/core/icons_helper.rb
ui_bibz-4.0.0.beta15 lib/ui_bibz/helpers/ui/core/icons_helper.rb
ui_bibz-4.0.0.beta14 lib/ui_bibz/helpers/ui/core/icons_helper.rb
ui_bibz-4.0.0.beta13 lib/ui_bibz/helpers/ui/core/icons_helper.rb
ui_bibz-4.0.0.beta10 lib/ui_bibz/helpers/ui/core/icons_helper.rb
ui_bibz-4.0.0.beta9 lib/ui_bibz/helpers/ui/core/icons_helper.rb
ui_bibz-4.0.0.beta8 lib/ui_bibz/helpers/ui/core/icons_helper.rb
ui_bibz-4.0.0.beta7 lib/ui_bibz/helpers/ui/core/icons_helper.rb
ui_bibz-4.0.0.beta6 lib/ui_bibz/helpers/ui/core/icons_helper.rb
ui_bibz-4.0.0.beta4 lib/ui_bibz/helpers/ui/core/icons_helper.rb
ui_bibz-4.0.0.beta3 lib/ui_bibz/helpers/ui/core/icons_helper.rb