Sha256: a944002a885c3fa157815ab4e5a0ac31c54c3bb2fc283bde68ed9022b584ae14

Contents?: true

Size: 1.56 KB

Versions: 12

Compression:

Stored size: 1.56 KB

Contents

# frozen_string_literal: true

# rubocop:disable Layout/LineLength
module Phlex
  module Icons
    module Tabler
      class StarHalf < 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 1a.993 .993 0 0 1 .823 .443l.067 .116l2.852 5.781l6.38 .925c.741 .108 1.08 .94 .703 1.526l-.07 .095l-.078 .086l-4.624 4.499l1.09 6.355a1.001 1.001 0 0 1 -1.249 1.135l-.101 -.035l-.101 -.046l-5.693 -3l-5.706 3c-.105 .055 -.212 .09 -.32 .106l-.106 .01a1.003 1.003 0 0 1 -1.038 -1.06l.013 -.11l1.09 -6.355l-4.623 -4.5a1.001 1.001 0 0 1 .328 -1.647l.113 -.036l.114 -.023l6.379 -.925l2.853 -5.78a.968 .968 0 0 1 .904 -.56zm0 3.274v12.476a1 1 0 0 1 .239 .029l.115 .036l.112 .05l4.363 2.299l-.836 -4.873a1 1 0 0 1 .136 -.696l.07 -.099l.082 -.09l3.546 -3.453l-4.891 -.708a1 1 0 0 1 -.62 -.344l-.073 -.097l-.06 -.106l-2.183 -4.424z'
            )
          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: 'M12 17.75l-6.172 3.245l1.179 -6.873l-5 -4.867l6.9 -1l3.086 -6.253z'
            )
          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/star_half.rb
phlex-icons-0.17.0 lib/phlex/icons/tabler/star_half.rb
phlex-icons-tabler-0.16.0 lib/phlex/icons/tabler/star_half.rb
phlex-icons-0.16.0 lib/phlex/icons/tabler/star_half.rb
phlex-icons-tabler-0.15.0 lib/phlex/icons/tabler/star_half.rb
phlex-icons-0.15.0 lib/phlex/icons/tabler/star_half.rb
phlex-icons-tabler-0.14.0 lib/phlex/icons/tabler/star_half.rb
phlex-icons-0.14.0 lib/phlex/icons/tabler/star_half.rb
phlex-icons-tabler-0.13.0 lib/phlex/icons/tabler/star_half.rb
phlex-icons-0.13.0 lib/phlex/icons/tabler/star_half.rb
phlex-icons-0.12.0 lib/phlex/icons/tabler/star_half.rb
phlex-icons-tabler-0.12.0 lib/phlex/icons/tabler/star_half.rb