Sha256: 064f220d9e3a250dc3ce7aff1586618a0c7654c4c6d8d46e14e0feee32364b6c
Contents?: true
Size: 693 Bytes
Versions: 12
Compression:
Stored size: 693 Bytes
Contents
# frozen_string_literal: true module Phlex module Icons module Tabler class Anchor < 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: 'M12 9v12m-8 -8a8 8 0 0 0 16 0m1 0h-2m-14 0h-2') s.path(d: 'M12 6m-3 0a3 3 0 1 0 6 0a3 3 0 1 0 -6 0') end end end end end end
Version data entries
12 entries across 12 versions & 2 rubygems