Sha256: 2610531e8047808f81e9c54f648639cb5159002452fdc84349663fa9089bef00
Contents?: true
Size: 998 Bytes
Versions: 18
Compression:
Stored size: 998 Bytes
Contents
# frozen_string_literal: true # rubocop:disable Metrics/MethodLength module Phlex module Icons module Lucide class Grip < 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: '12', cy: '5', r: '1') s.circle(cx: '19', cy: '5', r: '1') s.circle(cx: '5', cy: '5', r: '1') s.circle(cx: '12', cy: '12', r: '1') s.circle(cx: '19', cy: '12', r: '1') s.circle(cx: '5', cy: '12', r: '1') s.circle(cx: '12', cy: '19', r: '1') s.circle(cx: '19', cy: '19', r: '1') s.circle(cx: '5', cy: '19', r: '1') end end end end end end # rubocop:enable Metrics/MethodLength
Version data entries
18 entries across 18 versions & 2 rubygems