Sha256: ad44896a0865dbc54158ada568b1974681282627bf1614190876c8fe538f3ec3
Contents?: true
Size: 765 Bytes
Versions: 14
Compression:
Stored size: 765 Bytes
Contents
# frozen_string_literal: true module Phlex module Icons module Lucide class Binary < 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.rect(x: '14', y: '14', width: '4', height: '6', rx: '2') s.rect(x: '6', y: '4', width: '4', height: '6', rx: '2') s.path(d: 'M6 20h4') s.path(d: 'M14 10h4') s.path(d: 'M6 14h2v6') s.path(d: 'M14 4h2v6') end end end end end end
Version data entries
14 entries across 14 versions & 2 rubygems