Sha256: adad86b37ac4d477fb4560301712007825e71ec71af0e71766c664146e5e1e21
Contents?: true
Size: 728 Bytes
Versions: 14
Compression:
Stored size: 728 Bytes
Contents
# frozen_string_literal: true module Phlex module Icons module Tabler class PlaystationTriangle < 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: 'M12 21a9 9 0 0 0 9 -9a9 9 0 0 0 -9 -9a9 9 0 0 0 -9 9a9 9 0 0 0 9 9z' ) s.path(d: 'M7.5 15h9l-4.5 -8z') end end end end end end
Version data entries
14 entries across 14 versions & 2 rubygems