Files
ob248.com/node_modules/@nsmr/pixelart-react/dist/components/Download.d.ts
2026-02-05 17:31:20 +00:00

10 lines
284 B
TypeScript

import React from 'react';
export interface DownloadProps extends React.SVGProps<SVGSVGElement> {
size?: number | string;
className?: string;
}
export declare const Download: {
({ size, className, ...props }: DownloadProps): React.JSX.Element;
displayName: string;
};