@coreui/react
Version:
UI Components Library for React.js
10 lines (9 loc) • 374 B
TypeScript
import { CLinkProps } from '../link/CLink';
import { PolymorphicRefForwardingComponent } from '../../helpers';
export interface CDropdownItemProps extends CLinkProps {
/**
* A string of all className you want applied to the component.
*/
className?: string;
}
export declare const CDropdownItem: PolymorphicRefForwardingComponent<'a', CDropdownItemProps>;