Sha256: b47699c0a8a6fb296f00e7d3a5117ae5269d1e68c0ba01a62e2509de4e158ccd

Contents?: true

Size: 1.54 KB

Versions: 12

Compression:

Stored size: 1.54 KB

Contents

# frozen_string_literal: true

# rubocop:disable Layout/LineLength
module Phlex
  module Icons
    module Tabler
      class Dice3 < 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:
                'M18.333 2c1.96 0 3.56 1.537 3.662 3.472l.005 .195v12.666c0 1.96 -1.537 3.56 -3.472 3.662l-.195 .005h-12.666a3.667 3.667 0 0 1 -3.662 -3.472l-.005 -.195v-12.666c0 -1.96 1.537 -3.56 3.472 -3.662l.195 -.005h12.666zm-2.833 12a1.5 1.5 0 1 0 0 3a1.5 1.5 0 0 0 0 -3zm-3.5 -3.5a1.5 1.5 0 1 0 0 3a1.5 1.5 0 0 0 0 -3zm-3.5 -3.5a1.5 1.5 0 1 0 0 3a1.5 1.5 0 0 0 0 -3z'
            )
          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:
                'M3 3m0 2a2 2 0 0 1 2 -2h14a2 2 0 0 1 2 2v14a2 2 0 0 1 -2 2h-14a2 2 0 0 1 -2 -2z'
            )
            s.circle(cx: '8.5', cy: '8.5', r: '.5', fill: 'currentColor')
            s.circle(cx: '15.5', cy: '15.5', r: '.5', fill: 'currentColor')
            s.circle(cx: '12', cy: '12', r: '.5', fill: 'currentColor')
          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/dice_3.rb
phlex-icons-0.17.0 lib/phlex/icons/tabler/dice_3.rb
phlex-icons-tabler-0.16.0 lib/phlex/icons/tabler/dice_3.rb
phlex-icons-0.16.0 lib/phlex/icons/tabler/dice_3.rb
phlex-icons-tabler-0.15.0 lib/phlex/icons/tabler/dice_3.rb
phlex-icons-0.15.0 lib/phlex/icons/tabler/dice_3.rb
phlex-icons-tabler-0.14.0 lib/phlex/icons/tabler/dice_3.rb
phlex-icons-0.14.0 lib/phlex/icons/tabler/dice_3.rb
phlex-icons-tabler-0.13.0 lib/phlex/icons/tabler/dice_3.rb
phlex-icons-0.13.0 lib/phlex/icons/tabler/dice_3.rb
phlex-icons-0.12.0 lib/phlex/icons/tabler/dice_3.rb
phlex-icons-tabler-0.12.0 lib/phlex/icons/tabler/dice_3.rb