Sha256: 70ff48e2d6b9c053aedd8a820e00c19141c21a269c9db932840ca86b7da4c547

Contents?: true

Size: 1.11 KB

Versions: 12

Compression:

Stored size: 1.11 KB

Contents

# frozen_string_literal: true

# rubocop:disable Layout/LineLength
module Phlex
  module Icons
    module Tabler
      class FileStar < Base
        def filled
          raise NotImplementedError
        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: 'M14 3v4a1 1 0 0 0 1 1h4')
            s.path(
              d: 'M17 21h-10a2 2 0 0 1 -2 -2v-14a2 2 0 0 1 2 -2h7l5 5v11a2 2 0 0 1 -2 2z'
            )
            s.path(
              d:
                'M11.8 16.817l-2.172 1.138a.392 .392 0 0 1 -.568 -.41l.415 -2.411l-1.757 -1.707a.389 .389 0 0 1 .217 -.665l2.428 -.352l1.086 -2.193a.392 .392 0 0 1 .702 0l1.086 2.193l2.428 .352a.39 .39 0 0 1 .217 .665l-1.757 1.707l.414 2.41a.39 .39 0 0 1 -.567 .411l-2.172 -1.138z'
            )
          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/file_star.rb
phlex-icons-0.17.0 lib/phlex/icons/tabler/file_star.rb
phlex-icons-tabler-0.16.0 lib/phlex/icons/tabler/file_star.rb
phlex-icons-0.16.0 lib/phlex/icons/tabler/file_star.rb
phlex-icons-tabler-0.15.0 lib/phlex/icons/tabler/file_star.rb
phlex-icons-0.15.0 lib/phlex/icons/tabler/file_star.rb
phlex-icons-tabler-0.14.0 lib/phlex/icons/tabler/file_star.rb
phlex-icons-0.14.0 lib/phlex/icons/tabler/file_star.rb
phlex-icons-tabler-0.13.0 lib/phlex/icons/tabler/file_star.rb
phlex-icons-0.13.0 lib/phlex/icons/tabler/file_star.rb
phlex-icons-0.12.0 lib/phlex/icons/tabler/file_star.rb
phlex-icons-tabler-0.12.0 lib/phlex/icons/tabler/file_star.rb