lib/phlex-icons/radix/codesandbox_logo.rb



# frozen_string_literal: true

# rubocop:disable Layout/LineLength
module PhlexIcons
  module Radix
    class CodesandboxLogo < Base
      def view_template
        svg(
          **attrs,
          viewbox: '0 0 15 15',
          fill: 'none',
          xmlns: 'http://www.w3.org/2000/svg'
        ) do |s|
          s.path(
            fill_rule: 'evenodd',
            clip_rule: 'evenodd',
            d:
              'M7.71144 0.796908C7.57742 0.734364 7.42258 0.734364 7.28856 0.796908L1.28856 3.59691C1.11252 3.67906 1 3.85574 1 4.05V10.95C1 11.1443 1.11252 11.3209 1.28856 11.4031L7.28856 14.2031C7.42258 14.2656 7.57742 14.2656 7.71144 14.2031L13.7114 11.4031C13.8875 11.3209 14 11.1443 14 10.95V4.05C14 3.85574 13.8875 3.67906 13.7114 3.59691L7.71144 0.796908ZM7.5 3.15674L5.9804 2.51091L7.5 1.80176L9.0196 2.51091L7.5 3.15674ZM7.69557 4.16019L10.2382 3.07958L12.2719 4.02866L7.5 6.05672L2.72809 4.02866L4.76182 3.07958L7.30443 4.16019C7.4294 4.2133 7.5706 4.2133 7.69557 4.16019ZM8 6.93078L13 4.80578V7.92967L11.0821 8.8119C10.7273 8.9751 10.5 9.32988 10.5 9.72039V11.7982L8 12.9649V6.93078ZM11.5 11.3316L13 10.6316V9.03039L11.5 9.72039V11.3316ZM7 6.93078V12.9649L4.50232 11.7993V9.72036C4.50232 9.32985 4.275 8.97507 3.92022 8.81187L2 7.92857V4.80578L7 6.93078ZM2 10.6316L3.50232 11.3327L3.50232 9.72036L2 9.0293V10.6316Z',
            fill: 'currentColor'
          )
        end
      end
    end
  end
end
# rubocop:enable Layout/LineLength