Sha256: 536c086334b1559e386df17684eafae5d021bb1b3f0851b9e8290881158748c1

Contents?: true

Size: 1.42 KB

Versions: 12

Compression:

Stored size: 1.42 KB

Contents

# frozen_string_literal: true

# rubocop:disable Layout/LineLength
module Phlex
  module Icons
    module Tabler
      class SteeringWheel < 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:
                'M17 3.34a10 10 0 1 1 -15 8.66l.005 -.324a10 10 0 0 1 14.995 -8.336m-13 8.66a8 8 0 0 0 7 7.937v-5.107a3 3 0 0 1 -1.898 -2.05l-5.07 -1.504q -.031 .36 -.032 .725m15.967 -.725l-5.069 1.503a3 3 0 0 1 -1.897 2.051v5.108a8 8 0 0 0 6.985 -8.422zm-11.967 -6.204a8 8 0 0 0 -3.536 4.244l4.812 1.426a3 3 0 0 1 5.448 0l4.812 -1.426a8 8 0 0 0 -11.536 -4.244'
            )
          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 12m-9 0a9 9 0 1 0 18 0a9 9 0 1 0 -18 0')
            s.path(d: 'M12 12m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0')
            s.path(d: 'M12 14l0 7')
            s.path(d: 'M10 12l-6.75 -2')
            s.path(d: 'M14 12l6.75 -2')
          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/steering_wheel.rb
phlex-icons-0.17.0 lib/phlex/icons/tabler/steering_wheel.rb
phlex-icons-tabler-0.16.0 lib/phlex/icons/tabler/steering_wheel.rb
phlex-icons-0.16.0 lib/phlex/icons/tabler/steering_wheel.rb
phlex-icons-tabler-0.15.0 lib/phlex/icons/tabler/steering_wheel.rb
phlex-icons-0.15.0 lib/phlex/icons/tabler/steering_wheel.rb
phlex-icons-tabler-0.14.0 lib/phlex/icons/tabler/steering_wheel.rb
phlex-icons-0.14.0 lib/phlex/icons/tabler/steering_wheel.rb
phlex-icons-tabler-0.13.0 lib/phlex/icons/tabler/steering_wheel.rb
phlex-icons-0.13.0 lib/phlex/icons/tabler/steering_wheel.rb
phlex-icons-0.12.0 lib/phlex/icons/tabler/steering_wheel.rb
phlex-icons-tabler-0.12.0 lib/phlex/icons/tabler/steering_wheel.rb