@dnb/eufemia
Version:
DNB Eufemia Design System UI Library
19 lines (18 loc) • 460 B
TypeScript
/**
* HTML Element
*
*/
import React from 'react';
import type { SpacingProps } from '../../shared/types';
type HrProps = SpacingProps & React.HTMLAttributes<HTMLHRElement> & {
/**
* To make the hr full width.
*/
breakout?: boolean;
/**
* To make the hr dashed.
*/
dashed?: boolean;
};
declare const Hr: ({ breakout, dashed, className, ...props }?: HrProps) => import("react/jsx-runtime").JSX.Element;
export default Hr;