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

10 lines
284 B
TypeScript

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