Sha256: cc568397fab167c31e45f3cd3dc6ffa9fbd223f0677991a8a7f4a1b723cf7898
Contents?: true
Size: 747 Bytes
Versions: 12
Compression:
Stored size: 747 Bytes
Contents
# frozen_string_literal: true module Phlex module Icons module Tabler class DeviceLaptop < Base def filled raise NotImplementedError end def outline 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: 'M3 19l18 0') s.path( d: 'M5 6m0 1a1 1 0 0 1 1 -1h12a1 1 0 0 1 1 1v8a1 1 0 0 1 -1 1h-12a1 1 0 0 1 -1 -1z' ) end end end end end end
Version data entries
12 entries across 12 versions & 2 rubygems