Sha256: f3a0642878e18abdbbcb33b96f97ec62e47df8f8ad737e2fc1a7bb336a95e6cd
Contents?: true
Size: 768 Bytes
Versions: 12
Compression:
Stored size: 768 Bytes
Contents
# frozen_string_literal: true module Phlex module Icons module Tabler class BookmarkAi < 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: 'M10.02 18.32l-4.02 2.68v-14a4 4 0 0 1 4 -4h4a4 4 0 0 1 4 4v4.5') s.path(d: 'M14 21v-4a2 2 0 1 1 4 0v4') s.path(d: 'M14 19h4') s.path(d: 'M21 15v6') end end end end end end
Version data entries
12 entries across 12 versions & 2 rubygems