Sha256: 60ca46b1676b39d0e6403c551f479ad6729efad8a6f9a521d3debd4999664100
Contents?: true
Size: 627 Bytes
Versions: 26
Compression:
Stored size: 627 Bytes
Contents
# frozen_string_literal: true module Phlex module Icons module Lucide class ToggleLeft < 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.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
26 entries across 26 versions & 2 rubygems