Sha256: ddc114e0bcd09245bc26e2e4da8012552960cfc84af763e1aea7fb64a8efc846

Contents?: true

Size: 1.5 KB

Versions: 14

Compression:

Stored size: 1.5 KB

Contents

# frozen_string_literal: true

# rubocop:disable Layout/LineLength
module Phlex
  module Icons
    module Tabler
      class Book < Base
        def filled
          svg(
            **attrs,
            xmlns: 'http://www.w3.org/2000/svg',
            viewbox: '0 0 24 24',
            fill: 'currentColor'
          ) do |s|
            s.path(
              d:
                'M12.088 4.82a10 10 0 0 1 9.412 .314a1 1 0 0 1 .493 .748l.007 .118v13a1 1 0 0 1 -1.5 .866a8 8 0 0 0 -8 0a1 1 0 0 1 -1 0a8 8 0 0 0 -7.733 -.148l-.327 .18l-.103 .044l-.049 .016l-.11 .026l-.061 .01l-.117 .006h-.042l-.11 -.012l-.077 -.014l-.108 -.032l-.126 -.056l-.095 -.056l-.089 -.067l-.06 -.056l-.073 -.082l-.064 -.089l-.022 -.036l-.032 -.06l-.044 -.103l-.016 -.049l-.026 -.11l-.01 -.061l-.004 -.049l-.002 -.068v-13a1 1 0 0 1 .5 -.866a10 10 0 0 1 9.412 -.314l.088 .044l.088 -.044z'
            )
          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 19a9 9 0 0 1 9 0a9 9 0 0 1 9 0')
            s.path(d: 'M3 6a9 9 0 0 1 9 0a9 9 0 0 1 9 0')
            s.path(d: 'M3 6l0 13')
            s.path(d: 'M12 6l0 13')
            s.path(d: 'M21 6l0 13')
          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/book.rb
phlex-icons-1.6.0 lib/phlex/icons/tabler/book.rb
phlex-icons-tabler-1.5.0 lib/phlex/icons/tabler/book.rb
phlex-icons-1.5.0 lib/phlex/icons/tabler/book.rb
phlex-icons-tabler-1.4.0 lib/phlex/icons/tabler/book.rb
phlex-icons-1.4.0 lib/phlex/icons/tabler/book.rb
phlex-icons-1.3.0 lib/phlex/icons/tabler/book.rb
phlex-icons-tabler-1.3.0 lib/phlex/icons/tabler/book.rb
phlex-icons-tabler-1.2.0 lib/phlex/icons/tabler/book.rb
phlex-icons-1.2.0 lib/phlex/icons/tabler/book.rb
phlex-icons-tabler-1.1.0 lib/phlex/icons/tabler/book.rb
phlex-icons-1.1.0 lib/phlex/icons/tabler/book.rb
phlex-icons-1.0.0 lib/phlex/icons/tabler/book.rb
phlex-icons-tabler-1.0.0 lib/phlex/icons/tabler/book.rb