Sha256: b15a58e1b2dbe8b694d890d96c80a168a4c70688d88545605e33958a9f485bb3
Contents?: true
Size: 520 Bytes
Versions: 26
Compression:
Stored size: 520 Bytes
Contents
# frozen_string_literal: true module Phlex module Icons module Lucide class Play < Base def view_template 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' ) { |s| s.polygon(points: '6 3 20 12 6 21 6 3') } end end end end end
Version data entries
26 entries across 26 versions & 2 rubygems