Sha256: e8207385685fbb9b227d9ed12a8053a714f6bcfe9735c84d3121ef80ae409489
Contents?: true
Size: 811 Bytes
Versions: 24
Compression:
Stored size: 811 Bytes
Contents
# frozen_string_literal: true # rubocop:disable Layout/LineLength module Phlex module Icons module Remix class KeynoteLine < Base def view_template svg( class: classes, viewbox: '0 0 24 24', fill: 'currentColor', xmlns: 'http://www.w3.org/2000/svg' ) do |s| s.path( d: 'M4.43967 10H19.5605L18.3605 4H5.63967L4.43967 10ZM13.0001 12V20H17.0001V22H7.00006V20H11.0001V12H2.99187C2.44411 12 2.086 11.5703 2.19547 11.023L3.80465 2.97705C3.91258 2.43744 4.4447 2 5.00094 2H18.9992C19.552 2 20.086 2.42969 20.1955 2.97705L21.8047 11.023C21.9126 11.5626 21.5448 12 21.0083 12H13.0001Z' ) end end end end end end # rubocop:enable Layout/LineLength
Version data entries
24 entries across 24 versions & 2 rubygems