Sha256: 2a95af1e4d2dea5ea966b6efd137cc0e423d48d44b7730f9c1c3b7a4e317ebd1
Contents?: true
Size: 654 Bytes
Versions: 12
Compression:
Stored size: 654 Bytes
Contents
# frozen_string_literal: true module Phlex module Icons module Tabler class ZodiacLibra < 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 20l14 0') s.path(d: 'M5 17h5v-.3a7 7 0 1 1 4 0v.3h5') end end end end end end
Version data entries
12 entries across 12 versions & 2 rubygems