Sha256: faa03442011c614f82329463eb1bcf23a19b9ec5f0bcae4c40f55d69bb83f34a

Contents?: true

Size: 871 Bytes

Versions: 25

Compression:

Stored size: 871 Bytes

Contents

# frozen_string_literal: true

# rubocop:disable Layout/LineLength
module Phlex
  module Icons
    module Bootstrap
      class ChatRightDots < Base
        def view_template
          svg(
            class: classes,
            xmlns: 'http://www.w3.org/2000/svg',
            fill: 'currentColor',
            viewbox: '0 0 16 16'
          ) do |s|
            s.path(
              d:
                'M2 1a1 1 0 0 0-1 1v8a1 1 0 0 0 1 1h9.586a2 2 0 0 1 1.414.586l2 2V2a1 1 0 0 0-1-1zm12-1a2 2 0 0 1 2 2v12.793a.5.5 0 0 1-.854.353l-2.853-2.853a1 1 0 0 0-.707-.293H2a2 2 0 0 1-2-2V2a2 2 0 0 1 2-2z'
            )
            s.path(
              d:
                'M5 6a1 1 0 1 1-2 0 1 1 0 0 1 2 0m4 0a1 1 0 1 1-2 0 1 1 0 0 1 2 0m4 0a1 1 0 1 1-2 0 1 1 0 0 1 2 0'
            )
          end
        end
      end
    end
  end
end
# rubocop:enable Layout/LineLength

Version data entries

25 entries across 25 versions & 2 rubygems

Version Path
phlex-icons-0.5.0 lib/phlex/icons/bootstrap/chat_right_dots.rb
phlex-icons-0.4.0 lib/phlex/icons/bootstrap/chat_right_dots.rb
phlex-icons-0.3.0 lib/phlex/icons/bootstrap/chat_right_dots.rb
phlex-icons-0.2.0 lib/phlex/icons/bootstrap/chat_right_dots.rb
phlex-icons-0.1.0 lib/phlex/icons/bootstrap/chat_right_dots.rb