Sha256: d0a61a47e55926c0f49430cee5d6afb1e19e5ffc6e31903ca571d5ba74a7c956
Contents?: true
Size: 672 Bytes
Versions: 14
Compression:
Stored size: 672 Bytes
Contents
# frozen_string_literal: true module Phlex module Icons module Lucide class Airplay < Base def view_template 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: 'M5 17H4a2 2 0 0 1-2-2V5a2 2 0 0 1 2-2h16a2 2 0 0 1 2 2v10a2 2 0 0 1-2 2h-1' ) s.path(d: 'm12 15 5 6H7Z') end end end end end end
Version data entries
14 entries across 14 versions & 2 rubygems