Sha256: 115830c9f4c26203eab5afe8d586b5e9dd6b2583e9e7a20d11f395efe9dc0960

Contents?: true

Size: 1.56 KB

Versions: 14

Compression:

Stored size: 1.56 KB

Contents

# frozen_string_literal: true

# rubocop:disable Layout/LineLength
module Phlex
  module Icons
    module Tabler
      class AlignBoxBottomCenter < Base
        def filled
          svg(
            **attrs,
            xmlns: 'http://www.w3.org/2000/svg',
            viewbox: '0 0 24 24',
            fill: 'currentColor'
          ) do |s|
            s.path(
              d:
                'M18.333 2c1.96 0 3.56 1.537 3.662 3.472l.005 .195v12.666c0 1.96 -1.537 3.56 -3.472 3.662l-.195 .005h-12.666a3.667 3.667 0 0 1 -3.662 -3.472l-.005 -.195v-12.666c0 -1.96 1.537 -3.56 3.472 -3.662l.195 -.005h12.666zm-9.333 13a1 1 0 0 0 -1 1v2l.007 .117a1 1 0 0 0 1.993 -.117v-2l-.007 -.117a1 1 0 0 0 -.993 -.883zm3 -4a1 1 0 0 0 -1 1v6l.007 .117a1 1 0 0 0 1.993 -.117v-6l-.007 -.117a1 1 0 0 0 -.993 -.883zm3 2a1 1 0 0 0 -1 1v4l.007 .117a1 1 0 0 0 1.993 -.117v-4l-.007 -.117a1 1 0 0 0 -.993 -.883z'
            )
          end
        end

        def outline
          svg(
            **attrs,
            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 3m0 2a2 2 0 0 1 2 -2h14a2 2 0 0 1 2 2v14a2 2 0 0 1 -2 2h-14a2 2 0 0 1 -2 -2z'
            )
            s.path(d: 'M9 15v2')
            s.path(d: 'M12 11v6')
            s.path(d: 'M15 13v4')
          end
        end
      end
    end
  end
end
# rubocop:enable Layout/LineLength

Version data entries

14 entries across 14 versions & 2 rubygems

Version Path
phlex-icons-tabler-1.6.0 lib/phlex/icons/tabler/align_box_bottom_center.rb
phlex-icons-1.6.0 lib/phlex/icons/tabler/align_box_bottom_center.rb
phlex-icons-tabler-1.5.0 lib/phlex/icons/tabler/align_box_bottom_center.rb
phlex-icons-1.5.0 lib/phlex/icons/tabler/align_box_bottom_center.rb
phlex-icons-tabler-1.4.0 lib/phlex/icons/tabler/align_box_bottom_center.rb
phlex-icons-1.4.0 lib/phlex/icons/tabler/align_box_bottom_center.rb
phlex-icons-1.3.0 lib/phlex/icons/tabler/align_box_bottom_center.rb
phlex-icons-tabler-1.3.0 lib/phlex/icons/tabler/align_box_bottom_center.rb
phlex-icons-tabler-1.2.0 lib/phlex/icons/tabler/align_box_bottom_center.rb
phlex-icons-1.2.0 lib/phlex/icons/tabler/align_box_bottom_center.rb
phlex-icons-tabler-1.1.0 lib/phlex/icons/tabler/align_box_bottom_center.rb
phlex-icons-1.1.0 lib/phlex/icons/tabler/align_box_bottom_center.rb
phlex-icons-1.0.0 lib/phlex/icons/tabler/align_box_bottom_center.rb
phlex-icons-tabler-1.0.0 lib/phlex/icons/tabler/align_box_bottom_center.rb