Sha256: 657b045413be54087cb98c32a4e77ff0151ba05ef7bc561ab2a0364dc9c4a9fd
Contents?: true
Size: 931 Bytes
Versions: 12
Compression:
Stored size: 931 Bytes
Contents
# frozen_string_literal: true module Phlex module Icons module Tabler class TimelineEventPlus < 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 20m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0') s.path(d: 'M10 20h-6') s.path(d: 'M14 20h6') s.path( d: 'M12 15l-2 -2h-3a1 1 0 0 1 -1 -1v-8a1 1 0 0 1 1 -1h10a1 1 0 0 1 1 1v8a1 1 0 0 1 -1 1h-3l-2 2z' ) s.path(d: 'M10 8h4') s.path(d: 'M12 6v4') end end end end end end
Version data entries
12 entries across 12 versions & 2 rubygems