@9am/fire-flame-react
Version:
A fire flame library.
10 lines (9 loc) • 405 B
TypeScript
import React from 'react';
import { Vector } from '@9am/fire-flame';
import type { FireFlameOption } from '@9am/fire-flame';
declare type FireFlameProps = {
children?: React.ReactNode;
option?: FireFlameOption;
};
declare const FireFlameComponent: React.ForwardRefExoticComponent<FireFlameProps & React.RefAttributes<unknown>>;
export { FireFlameComponent as FireFlame, FireFlameOption, Vector };