Sha256: dba61adfda428b84e26cffbd3eb675138fb67d91e41b4c0d858ebd4677f7e6f0
Contents?: true
Size: 846 Bytes
Versions: 14
Compression:
Stored size: 846 Bytes
Contents
# frozen_string_literal: true module Phlex module Icons module Tabler class Friends < 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: 'M7 5m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0') s.path(d: 'M5 22v-5l-1 -1v-4a1 1 0 0 1 1 -1h4a1 1 0 0 1 1 1v4l-1 1v5') s.path(d: 'M17 5m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0') s.path(d: 'M15 22v-4h-2l2 -6a1 1 0 0 1 1 -1h2a1 1 0 0 1 1 1l2 6h-2v4') end end end end end end
Version data entries
14 entries across 14 versions & 2 rubygems