@loke/ui
Version:
16 lines (15 loc) • 714 B
TypeScript
import { Primitive } from "@loke/ui/primitive";
import { type ComponentPropsWithoutRef } from "react";
type PrimitiveSvgProps = ComponentPropsWithoutRef<typeof Primitive.svg>;
type ArrowProps = PrimitiveSvgProps;
/**
* Arrow component renders a customizable SVG arrow.
*/
declare const Arrow: import("react").ForwardRefExoticComponent<Omit<import("react").SVGProps<SVGSVGElement> & {
asChild?: boolean;
}, "ref"> & import("react").RefAttributes<SVGSVGElement>>;
declare const Root: import("react").ForwardRefExoticComponent<Omit<import("react").SVGProps<SVGSVGElement> & {
asChild?: boolean;
}, "ref"> & import("react").RefAttributes<SVGSVGElement>>;
export { Arrow, Root, };
export type { ArrowProps };