Sha256: 3a0fbf8dfb3534b625d83767a8b3df1c4a3e1819020f3ce3afa3ad646173d02b

Contents?: true

Size: 1.5 KB

Versions: 12

Compression:

Stored size: 1.5 KB

Contents

# frozen_string_literal: true

# rubocop:disable Layout/LineLength
module Phlex
  module Icons
    module Tabler
      class DropletHalf < 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:
                'M12 2l.07 .003a2.41 2.41 0 0 1 1.825 .907l.108 .148l4.92 7.306c1.952 3.267 1.191 7.42 -1.796 9.836c-2.968 2.402 -7.285 2.402 -10.254 0c-2.917 -2.36 -3.711 -6.376 -1.901 -9.65l.134 -.232l4.893 -7.26c.185 -.275 .426 -.509 .709 -.686a2.426 2.426 0 0 1 1.066 -.36l.226 -.012zm-1 3.149l-4.206 6.24c-1.44 2.41 -.88 5.463 1.337 7.257a6.101 6.101 0 0 0 2.869 1.276v-14.773z'
            )
          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:
                'M7.502 19.423c2.602 2.105 6.395 2.105 8.996 0c2.602 -2.105 3.262 -5.708 1.566 -8.546l-4.89 -7.26c-.42 -.625 -1.287 -.803 -1.936 -.397a1.376 1.376 0 0 0 -.41 .397l-4.893 7.26c-1.695 2.838 -1.035 6.441 1.567 8.546z'
            )
            s.path(d: 'M12 3v18')
          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/droplet_half.rb
phlex-icons-0.17.0 lib/phlex/icons/tabler/droplet_half.rb
phlex-icons-tabler-0.16.0 lib/phlex/icons/tabler/droplet_half.rb
phlex-icons-0.16.0 lib/phlex/icons/tabler/droplet_half.rb
phlex-icons-tabler-0.15.0 lib/phlex/icons/tabler/droplet_half.rb
phlex-icons-0.15.0 lib/phlex/icons/tabler/droplet_half.rb
phlex-icons-tabler-0.14.0 lib/phlex/icons/tabler/droplet_half.rb
phlex-icons-0.14.0 lib/phlex/icons/tabler/droplet_half.rb
phlex-icons-tabler-0.13.0 lib/phlex/icons/tabler/droplet_half.rb
phlex-icons-0.13.0 lib/phlex/icons/tabler/droplet_half.rb
phlex-icons-0.12.0 lib/phlex/icons/tabler/droplet_half.rb
phlex-icons-tabler-0.12.0 lib/phlex/icons/tabler/droplet_half.rb