Sha256: b04d48a0c781b8f14525db76f1a3c5a6f76083656767c6fe237301266ddb8e31
Contents?: true
Size: 1.11 KB
Versions: 18
Compression:
Stored size: 1.11 KB
Contents
# frozen_string_literal: true # rubocop:disable Metrics/MethodLength module Phlex module Icons module Tabler class ArtboardOff < Base def filled raise NotImplementedError end def outline 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.path(d: 'M12 8h3a1 1 0 0 1 1 1v3') s.path( d: 'M15.716 15.698a1 1 0 0 1 -.716 .302h-6a1 1 0 0 1 -1 -1v-6c0 -.273 .11 -.52 .287 -.7' ) s.path(d: 'M3 8h1') s.path(d: 'M3 16h1') s.path(d: 'M8 3v1') s.path(d: 'M16 3v1') s.path(d: 'M20 8h1') s.path(d: 'M20 16h1') s.path(d: 'M8 20v1') s.path(d: 'M16 20v1') s.path(d: 'M3 3l18 18') end end end end end end # rubocop:enable Metrics/MethodLength
Version data entries
18 entries across 18 versions & 2 rubygems