Sha256: 572c24ac5c55ec33e89e88c7a2e762cd84ab8f22e17d5502d9dc2f2c392d57c0
Contents?: true
Size: 958 Bytes
Versions: 12
Compression:
Stored size: 958 Bytes
Contents
# frozen_string_literal: true module Phlex module Icons module Tabler class Shape < 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: 'M5 5m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0') s.path(d: 'M19 5m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0') s.path(d: 'M5 19m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0') s.path(d: 'M19 19m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0') s.path(d: 'M5 7l0 10') s.path(d: 'M7 5l10 0') s.path(d: 'M7 19l10 0') s.path(d: 'M19 7l0 10') end end end end end end
Version data entries
12 entries across 12 versions & 2 rubygems