Sha256: fd53648fac12b6c1247986297c2c9956f260513e4803a67bca98b5a310ccd2ab
Contents?: true
Size: 620 Bytes
Versions: 14
Compression:
Stored size: 620 Bytes
Contents
# frozen_string_literal: true module Phlex module Icons module Lucide class ToggleLeft < 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.rect(width: '20', height: '12', x: '2', y: '6', rx: '6', ry: '6') s.circle(cx: '8', cy: '12', r: '2') end end end end end end
Version data entries
14 entries across 14 versions & 2 rubygems