Sha256: a2fe976405d321ee6cb968c073f03f299e242813feb2a059c75b939647b8a0ca
Contents?: true
Size: 708 Bytes
Versions: 26
Compression:
Stored size: 708 Bytes
Contents
# frozen_string_literal: true module Phlex module Icons module Lucide class Video < Base def view_template 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: 'm16 13 5.223 3.482a.5.5 0 0 0 .777-.416V7.87a.5.5 0 0 0-.752-.432L16 10.5' ) s.rect(x: '2', y: '6', width: '14', height: '12', rx: '2') end end end end end end
Version data entries
26 entries across 26 versions & 2 rubygems