Sha256: a116c5bc58924a3bca2dd4b9b5655224076d56b42966001f29e035c0ebd8498f
Contents?: true
Size: 703 Bytes
Versions: 14
Compression:
Stored size: 703 Bytes
Contents
# frozen_string_literal: true # rubocop:disable Layout/LineLength module Phlex module Icons module Remix class EnglishInput < Base def view_template svg( **attrs, viewbox: '0 0 24 24', fill: 'currentColor', xmlns: 'http://www.w3.org/2000/svg' ) do |s| s.path( d: 'M14 10H16L16.0005 10.7574C16.7154 10.279 17.5751 10 18.5 10C20.9853 10 23 12.0147 23 14.5V20H21V14.5C21 13.07 19.8255 12 18.5 12C17.1745 12 16 13.07 16 14.5V20H14V10ZM12 4V6H4V11H12V13H4V18H12V20H2V4H12Z' ) end end end end end end # rubocop:enable Layout/LineLength
Version data entries
14 entries across 14 versions & 2 rubygems