Sha256: c32d1c6a62b65ec2707d531b557d0b928bde73f68ee712bbd82ad6aeaa9611fa
Contents?: true
Size: 610 Bytes
Versions: 14
Compression:
Stored size: 610 Bytes
Contents
# frozen_string_literal: true module Blacklight module Icons # The file icon class FileComponent < Blacklight::Icons::IconComponent # Used unmodified from https://fontawesome.com # CC BY 4.0 https://creativecommons.org/licenses/by/4.0/ self.svg = <<~SVG <svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 384 512"><path d="M224 136V0H24C10.7 0 0 10.7 0 24v464c0 13.3 10.7 24 24 24h336c13.3 0 24-10.7 24-24V160H248c-13.2 0-24-10.8-24-24zm160-14.1v6.1H256V0h6.1c6.4 0 12.5 2.5 17 7l97.9 98c4.5 4.5 7 10.6 7 16.9z"/></svg> SVG end end end
Version data entries
14 entries across 14 versions & 1 rubygems