Sha256: 3593b355d5e7ea1ae5e7502b1ad149e5f0735233327e2cc251a1dd0466817dc2
Contents?: true
Size: 865 Bytes
Versions: 26
Compression:
Stored size: 865 Bytes
Contents
# frozen_string_literal: true # rubocop:disable Layout/LineLength module Phlex module Icons module Lucide class Bitcoin < 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.path( d: 'M11.767 19.089c4.924.868 6.14-6.025 1.216-6.894m-1.216 6.894L5.86 18.047m5.908 1.042-.347 1.97m1.563-8.864c4.924.869 6.14-6.025 1.215-6.893m-1.215 6.893-3.94-.694m5.155-6.2L8.29 4.26m5.908 1.042.348-1.97M7.48 20.364l3.126-17.727' ) end end end end end end # rubocop:enable Layout/LineLength
Version data entries
26 entries across 26 versions & 2 rubygems