Sha256: 02bb01ffcadbcfe09eb9bcecc9f38f6109f04f0f42f918e7d8add3c63c11d1c1
Contents?: true
Size: 662 Bytes
Versions: 14
Compression:
Stored size: 662 Bytes
Contents
# frozen_string_literal: true module Phlex module Icons module Lucide class LogOut < 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: 'M9 21H5a2 2 0 0 1-2-2V5a2 2 0 0 1 2-2h4') s.polyline(points: '16 17 21 12 16 7') s.line(x1: '21', x2: '9', y1: '12', y2: '12') end end end end end end
Version data entries
14 entries across 14 versions & 2 rubygems