Sha256: 1b02b865823aede780876856f5a6d0f5604afdaefcd085c700c9bdcb4579fc8f
Contents?: true
Size: 960 Bytes
Versions: 12
Compression:
Stored size: 960 Bytes
Contents
# frozen_string_literal: true module Phlex module Icons module Tabler class AddressBookOff < 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: 'M8 4h10a2 2 0 0 1 2 2v10m-.57 3.399c-.363 .37 -.87 .601 -1.43 .601h-10a2 2 0 0 1 -2 -2v-12' ) s.path(d: 'M10 16h6') s.path(d: 'M11 11a2 2 0 0 0 2 2m2 -2a2 2 0 0 0 -2 -2') s.path(d: 'M4 8h3') s.path(d: 'M4 12h3') s.path(d: 'M4 16h3') s.path(d: 'M3 3l18 18') end end end end end end
Version data entries
12 entries across 12 versions & 2 rubygems