Sha256: 7eb2ed68e2fc45b1da697f95220c755f1a37bc247a56138a8d70bcc810afe57a
Contents?: true
Size: 667 Bytes
Versions: 14
Compression:
Stored size: 667 Bytes
Contents
# frozen_string_literal: true module Phlex module Icons module Lucide class Tablets < 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.circle(cx: '7', cy: '7', r: '5') s.circle(cx: '17', cy: '17', r: '5') s.path(d: 'M12 17h10') s.path(d: 'm3.46 10.54 7.08-7.08') end end end end end end
Version data entries
14 entries across 14 versions & 2 rubygems