Sha256: e3c8aef9381250cc237378f959a89d40474d92eeca1b0813113c275cea9ed9a7

Contents?: true

Size: 1.57 KB

Versions: 12

Compression:

Stored size: 1.57 KB

Contents

# frozen_string_literal: true

# rubocop:disable Layout/LineLength
module Phlex
  module Icons
    module Tabler
      class SortDescendingShapes < 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:
                'M7 5a1 1 0 0 1 1 1v9.584l1.293 -1.291a1 1 0 0 1 1.32 -.083l.094 .083a1 1 0 0 1 0 1.414l-3 3a1 1 0 0 1 -.112 .097l-.11 .071l-.114 .054l-.105 .035l-.149 .03l-.117 .006l-.075 -.003l-.126 -.017l-.111 -.03l-.111 -.044l-.098 -.052l-.096 -.067l-.09 -.08l-3 -3a1 1 0 0 1 1.414 -1.414l1.293 1.293v-9.586a1 1 0 0 1 1 -1m12 8a2 2 0 0 1 2 2v4a2 2 0 0 1 -2 2h-4a2 2 0 0 1 -2 -2v-4a2 2 0 0 1 2 -2zm-1.136 -9.504l3.5 6a1 1 0 0 1 -.864 1.504h-7a1 1 0 0 1 -.864 -1.504l3.5 -6a1 1 0 0 1 1.728 0'
            )
          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: 'M4 15l3 3l3 -3')
            s.path(d: 'M7 6v12')
            s.path(
              d:
                'M14 15a1 1 0 0 1 1 -1h4a1 1 0 0 1 1 1v4a1 1 0 0 1 -1 1h-4a1 1 0 0 1 -1 -1v-4z'
            )
            s.path(d: 'M17 4l-3.5 6h7z')
          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/sort_descending_shapes.rb
phlex-icons-0.17.0 lib/phlex/icons/tabler/sort_descending_shapes.rb
phlex-icons-tabler-0.16.0 lib/phlex/icons/tabler/sort_descending_shapes.rb
phlex-icons-0.16.0 lib/phlex/icons/tabler/sort_descending_shapes.rb
phlex-icons-tabler-0.15.0 lib/phlex/icons/tabler/sort_descending_shapes.rb
phlex-icons-0.15.0 lib/phlex/icons/tabler/sort_descending_shapes.rb
phlex-icons-tabler-0.14.0 lib/phlex/icons/tabler/sort_descending_shapes.rb
phlex-icons-0.14.0 lib/phlex/icons/tabler/sort_descending_shapes.rb
phlex-icons-tabler-0.13.0 lib/phlex/icons/tabler/sort_descending_shapes.rb
phlex-icons-0.13.0 lib/phlex/icons/tabler/sort_descending_shapes.rb
phlex-icons-0.12.0 lib/phlex/icons/tabler/sort_descending_shapes.rb
phlex-icons-tabler-0.12.0 lib/phlex/icons/tabler/sort_descending_shapes.rb