JFIFxxC      C  " }!1AQa"q2#BR$3br %&'()*456789:CDEFGHIJSTUVWXYZcdefghijstuvwxyz w!1AQaq"2B #3Rbr{ gilour

File "icon.tsx"

Full Path: /home/markqprx/iniasli.pro/client/ui/images/icon.tsx
File size: 296 bytes
MIME-type: text/plain
Charset: utf-8

import React from 'react';

type IconProps = {
  name: string;
  className?: string;
};
export function Icon({name, className = 'w-24 h-24'}: IconProps) {
  return (
    <svg className={`fill-current inline-block ${className}`}>
      <use href={`/icons/merged.svg#${name}`} />
    </svg>
  );
}