Sha256: 21e76dddeda78f0f0104e38371569693f04361d3ccd3fa78c8d31b8cd1f0f8ea
Contents?: true
Size: 976 Bytes
Versions: 14
Compression:
Stored size: 976 Bytes
Contents
# frozen_string_literal: true module Phlex module Icons module Tabler class CodeAsterisk < 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: 'M6 19a2 2 0 0 1 -2 -2v-4l-1 -1l1 -1v-4a2 2 0 0 1 2 -2') s.path(d: 'M12 11.875l3 -1.687') s.path(d: 'M12 11.875v3.375') s.path(d: 'M12 11.875l-3 -1.687') s.path(d: 'M12 11.875l3 1.688') s.path(d: 'M12 8.5v3.375') s.path(d: 'M12 11.875l-3 1.688') s.path(d: 'M18 19a2 2 0 0 0 2 -2v-4l1 -1l-1 -1v-4a2 2 0 0 0 -2 -2') end end end end end end
Version data entries
14 entries across 14 versions & 2 rubygems