Sha256: b1697d819884fe431578e8fd995a40d09bcfb74fbe302f9a63e85689013a7b12

Contents?: true

Size: 1.69 KB

Versions: 14

Compression:

Stored size: 1.69 KB

Contents

# frozen_string_literal: true

# rubocop:disable Layout/LineLength
module Phlex
  module Icons
    module Tabler
      class AlarmSnooze < Base
        def filled
          svg(
            **attrs,
            xmlns: 'http://www.w3.org/2000/svg',
            viewbox: '0 0 24 24',
            fill: 'currentColor'
          ) do |s|
            s.path(
              d:
                'M16 6.072a8 8 0 1 1 -11.995 7.213l-.005 -.285l.005 -.285a8 8 0 0 1 11.995 -6.643zm-2 3.928h-4l-.117 .007a1 1 0 0 0 -.883 .993l.007 .117a1 1 0 0 0 .993 .883h1.584l-2.291 2.293l-.076 .084c-.514 .637 -.07 1.623 .783 1.623h4l.117 -.007a1 1 0 0 0 .883 -.993l-.007 -.117a1 1 0 0 0 -.993 -.883h-1.586l2.293 -2.293l.076 -.084c.514 -.637 .07 -1.623 -.783 -1.623z'
            )
            s.path(
              d:
                'M6.412 3.191a1 1 0 0 1 1.273 1.539l-.097 .08l-2.75 2a1 1 0 0 1 -1.273 -1.54l.097 -.08l2.75 -2z'
            )
            s.path(
              d:
                'M16.191 3.412a1 1 0 0 1 1.291 -.288l.106 .067l2.75 2a1 1 0 0 1 -1.07 1.685l-.106 -.067l-2.75 -2a1 1 0 0 1 -.22 -1.397z'
            )
          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: 'M12 13m-7 0a7 7 0 1 0 14 0a7 7 0 1 0 -14 0')
            s.path(d: 'M10 11h4l-4 4h4')
            s.path(d: 'M7 4l-2.75 2')
            s.path(d: 'M17 4l2.75 2')
          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/alarm_snooze.rb
phlex-icons-1.6.0 lib/phlex/icons/tabler/alarm_snooze.rb
phlex-icons-tabler-1.5.0 lib/phlex/icons/tabler/alarm_snooze.rb
phlex-icons-1.5.0 lib/phlex/icons/tabler/alarm_snooze.rb
phlex-icons-tabler-1.4.0 lib/phlex/icons/tabler/alarm_snooze.rb
phlex-icons-1.4.0 lib/phlex/icons/tabler/alarm_snooze.rb
phlex-icons-1.3.0 lib/phlex/icons/tabler/alarm_snooze.rb
phlex-icons-tabler-1.3.0 lib/phlex/icons/tabler/alarm_snooze.rb
phlex-icons-tabler-1.2.0 lib/phlex/icons/tabler/alarm_snooze.rb
phlex-icons-1.2.0 lib/phlex/icons/tabler/alarm_snooze.rb
phlex-icons-tabler-1.1.0 lib/phlex/icons/tabler/alarm_snooze.rb
phlex-icons-1.1.0 lib/phlex/icons/tabler/alarm_snooze.rb
phlex-icons-1.0.0 lib/phlex/icons/tabler/alarm_snooze.rb
phlex-icons-tabler-1.0.0 lib/phlex/icons/tabler/alarm_snooze.rb