Sha256: 1739728aa754a6e1f312a5e7d8e890e39788739b9a425b8664646a82f097c83a
Contents?: true
Size: 859 Bytes
Versions: 18
Compression:
Stored size: 859 Bytes
Contents
# frozen_string_literal: true module Phlex module Icons module Tabler class Podium < 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: 'M5 8h14l-.621 2.485a2 2 0 0 1 -1.94 1.515h-8.878a2 2 0 0 1 -1.94 -1.515l-.621 -2.485z' ) s.path(d: 'M7 8v-2a3 3 0 0 1 3 -3') s.path(d: 'M8 12l1 9') s.path(d: 'M16 12l-1 9') s.path(d: 'M7 21h10') end end end end end end
Version data entries
18 entries across 18 versions & 2 rubygems