Sha256: c36855a09c7f4ba81ad0b071fd99e7a633cc597f1f582daf1f82ceacde23a05a
Contents?: true
Size: 653 Bytes
Versions: 26
Compression:
Stored size: 653 Bytes
Contents
# frozen_string_literal: true module Phlex module Icons module Lucide class Voicemail < 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' ) do |s| s.circle(cx: '6', cy: '12', r: '4') s.circle(cx: '18', cy: '12', r: '4') s.line(x1: '6', x2: '18', y1: '16', y2: '16') end end end end end end
Version data entries
26 entries across 26 versions & 2 rubygems