Skip to main content
Module

x/frugal/docs/svg/Carret.tsx

A frugal web framework
Go to Latest
File
/* @jsx preact.h *//* @jsxFrag preact.Fragment */import * as preact from 'preact';import { SvgProps } from './type.ts';import { carretUrl } from './SpriteSheet.svg.tsx';
export function Carret({ class: className, ...props }: SvgProps) { return ( <svg {...props} class={className} viewBox='0 0 24 24' xmlns='http://www.w3.org/2000/svg' fill='currentColor' > <use href={carretUrl} /> </svg> );}