Sha256: 1f0c2d83850a8f335532d277d9cc9e0c60da9568f8d590f69a03e27b4265bc7c
Contents?: true
Size: 706 Bytes
Versions: 14
Compression:
Stored size: 706 Bytes
Contents
# frozen_string_literal: true module Phlex module Icons module Lucide class Podcast < 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: 'M16.85 18.58a9 9 0 1 0-9.7 0') s.path(d: 'M8 14a5 5 0 1 1 8 0') s.circle(cx: '12', cy: '11', r: '1') s.path(d: 'M13 17a1 1 0 1 0-2 0l.5 4.5a.5.5 0 1 0 1 0Z') end end end end end end
Version data entries
14 entries across 14 versions & 2 rubygems