@findnlink/neuro-ui
Version:
Findnlink design system
9 lines (8 loc) • 340 B
TypeScript
import { HTMLAttributes, ReactNode } from 'react';
import { UtilInterface } from '../../util/interfaces';
export interface FooterProps extends HTMLAttributes<HTMLButtonElement>, UtilInterface {
children: ReactNode;
}
export interface FooterItemProps extends HTMLAttributes<HTMLButtonElement>, UtilInterface {
children: ReactNode;
}