Sha256: 1f795c7a0f9402b72896ec73d220807ffb16eb7121a4ebaad46512dadb85e37b
Contents?: true
Size: 702 Bytes
Versions: 26
Compression:
Stored size: 702 Bytes
Contents
# frozen_string_literal: true module Phlex module Icons module Lucide class Bike < 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.circle(cx: '18.5', cy: '17.5', r: '3.5') s.circle(cx: '5.5', cy: '17.5', r: '3.5') s.circle(cx: '15', cy: '5', r: '1') s.path(d: 'M12 17.5V14l-3-3 4-3 2 3h2') end end end end end end
Version data entries
26 entries across 26 versions & 2 rubygems