Sha256: 7b3ffdcb4eb1afd65d1f95e0e39ccff032b4cc6607e586560b668cc1c2e9abf0

Contents?: true

Size: 1.51 KB

Versions: 12

Compression:

Stored size: 1.51 KB

Contents

# frozen_string_literal: true

# rubocop:disable Layout/LineLength
module Phlex
  module Icons
    module Tabler
      class BadgeHd < Base
        def filled
          svg(
            class: classes,
            xmlns: 'http://www.w3.org/2000/svg',
            viewbox: '0 0 24 24',
            fill: 'currentColor'
          ) do |s|
            s.path(
              d:
                'M19 4a3 3 0 0 1 3 3v10a3 3 0 0 1 -3 3h-14a3 3 0 0 1 -3 -3v-10a3 3 0 0 1 3 -3zm-4 4h-1a1 1 0 0 0 -1 1v6a1 1 0 0 0 1 1h1a3 3 0 0 0 3 -3v-2a3 3 0 0 0 -3 -3m-5 0a1 1 0 0 0 -1 1v2h-1v-2a1 1 0 0 0 -.883 -.993l-.117 -.007a1 1 0 0 0 -1 1v6a1 1 0 0 0 2 0v-2h1v2a1 1 0 0 0 .883 .993l.117 .007a1 1 0 0 0 1 -1v-6a1 1 0 0 0 -1 -1m5 2a1 1 0 0 1 1 1v2a1 1 0 0 1 -.883 .993l-.117 .007z'
            )
          end
        end

        def outline
          svg(
            class: classes,
            xmlns: 'http://www.w3.org/2000/svg',
            viewbox: '0 0 24 24',
            fill: 'none',
            stroke: 'currentColor',
            stroke_width: '2',
            stroke_linecap: 'round',
            stroke_linejoin: 'round'
          ) do |s|
            s.path(
              d:
                'M3 5m0 2a2 2 0 0 1 2 -2h14a2 2 0 0 1 2 2v10a2 2 0 0 1 -2 2h-14a2 2 0 0 1 -2 -2z'
            )
            s.path(d: 'M14 9v6h1a2 2 0 0 0 2 -2v-2a2 2 0 0 0 -2 -2h-1z')
            s.path(d: 'M7 15v-6')
            s.path(d: 'M10 15v-6')
            s.path(d: 'M7 12h3')
          end
        end
      end
    end
  end
end
# rubocop:enable Layout/LineLength

Version data entries

12 entries across 12 versions & 2 rubygems

Version Path
phlex-icons-tabler-0.17.0 lib/phlex/icons/tabler/badge_hd.rb
phlex-icons-0.17.0 lib/phlex/icons/tabler/badge_hd.rb
phlex-icons-tabler-0.16.0 lib/phlex/icons/tabler/badge_hd.rb
phlex-icons-0.16.0 lib/phlex/icons/tabler/badge_hd.rb
phlex-icons-tabler-0.15.0 lib/phlex/icons/tabler/badge_hd.rb
phlex-icons-0.15.0 lib/phlex/icons/tabler/badge_hd.rb
phlex-icons-tabler-0.14.0 lib/phlex/icons/tabler/badge_hd.rb
phlex-icons-0.14.0 lib/phlex/icons/tabler/badge_hd.rb
phlex-icons-tabler-0.13.0 lib/phlex/icons/tabler/badge_hd.rb
phlex-icons-0.13.0 lib/phlex/icons/tabler/badge_hd.rb
phlex-icons-0.12.0 lib/phlex/icons/tabler/badge_hd.rb
phlex-icons-tabler-0.12.0 lib/phlex/icons/tabler/badge_hd.rb