Sha256: 2e41b5ce8a8de0c153ac8fd480ea40dca5fdfe29c2663d375738807f371fdf8e
Contents?: true
Size: 1.1 KB
Versions: 12
Compression:
Stored size: 1.1 KB
Contents
# frozen_string_literal: true module Phlex module Icons module Tabler class VectorBezier2 < 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: 'M3 3m0 1a1 1 0 0 1 1 -1h2a1 1 0 0 1 1 1v2a1 1 0 0 1 -1 1h-2a1 1 0 0 1 -1 -1z' ) s.path( d: 'M17 17m0 1a1 1 0 0 1 1 -1h2a1 1 0 0 1 1 1v2a1 1 0 0 1 -1 1h-2a1 1 0 0 1 -1 -1z' ) s.path(d: 'M7 5l7 0') s.path(d: 'M10 19l7 0') s.path(d: 'M9 19m-1 0a1 1 0 1 0 2 0a1 1 0 1 0 -2 0') s.path(d: 'M15 5m-1 0a1 1 0 1 0 2 0a1 1 0 1 0 -2 0') s.path(d: 'M7 5.5a5 6.5 0 0 1 5 6.5a5 6.5 0 0 0 5 6.5') end end end end end end
Version data entries
12 entries across 12 versions & 2 rubygems