Sha256: 19fc7f1a00a1070e6e69d86015e82cd414ba30952f616ab25c117ba1058d88c0
Contents?: true
Size: 980 Bytes
Versions: 12
Compression:
Stored size: 980 Bytes
Contents
# frozen_string_literal: true # rubocop:disable Metrics/MethodLength module Phlex module Icons module Tabler class Screenshot < 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: 'M7 19a2 2 0 0 1 -2 -2') s.path(d: 'M5 13v-2') s.path(d: 'M5 7a2 2 0 0 1 2 -2') s.path(d: 'M11 5h2') s.path(d: 'M17 5a2 2 0 0 1 2 2') s.path(d: 'M19 11v2') s.path(d: 'M19 17v4') s.path(d: 'M21 19h-4') s.path(d: 'M13 19h-2') end end end end end end # rubocop:enable Metrics/MethodLength
Version data entries
12 entries across 12 versions & 2 rubygems