@dnb/eufemia
Version:
DNB Eufemia Design System UI Library
10 lines (9 loc) • 297 B
TypeScript
/**
* HTML Element
*
*/
import React from 'react';
import { ElementProps } from '../Element';
export type LiAllProps = React.AllHTMLAttributes<HTMLLIElement> & ElementProps;
declare const Li: ({ className, ...props }?: LiAllProps) => import("react/jsx-runtime").JSX.Element;
export default Li;