Sha256: 3994ee71d88dc65b8754c0adf2cf0254e981150857d5627fbc1d1bda9dc039b2
Contents?: true
Size: 820 Bytes
Versions: 18
Compression:
Stored size: 820 Bytes
Contents
# frozen_string_literal: true module Phlex module Icons module Tabler class PlayCard < Base def filled raise NotImplementedError end def outline 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: 'M19 5v14a2 2 0 0 1 -2 2h-10a2 2 0 0 1 -2 -2v-14a2 2 0 0 1 2 -2h10a2 2 0 0 1 2 2z' ) s.path(d: 'M8 6h.01') s.path(d: 'M16 18h.01') s.path(d: 'M12 16l-3 -4l3 -4l3 4z') end end end end end end
Version data entries
18 entries across 18 versions & 2 rubygems