Sha256: d6e94db182a6fb7a3a725e349eb6f86812ff3d0b206e801016599ca424786513
Contents?: true
Size: 802 Bytes
Versions: 14
Compression:
Stored size: 802 Bytes
Contents
# frozen_string_literal: true module Phlex module Icons module Tabler class Notes < 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: 'M5 3m0 2a2 2 0 0 1 2 -2h10a2 2 0 0 1 2 2v14a2 2 0 0 1 -2 2h-10a2 2 0 0 1 -2 -2z' ) s.path(d: 'M9 7l6 0') s.path(d: 'M9 11l6 0') s.path(d: 'M9 15l4 0') end end end end end end
Version data entries
14 entries across 14 versions & 2 rubygems