9 lines
182 B
TypeScript
9 lines
182 B
TypeScript
declare module 'react-checkmark' {
|
|
import { ReactNode } from 'react'
|
|
|
|
interface CheckmarkProps {
|
|
[key: string]: any
|
|
}
|
|
|
|
export const Checkmark: React.FC<CheckmarkProps>
|
|
}
|