UNPKG

@dnb/eufemia

Version:

DNB Eufemia Design System UI Library

15 lines (14 loc) 475 B
/** * Alignment helper * * This helper element provides needed help when it comes to HTML inline alignment (vertically) * */ import type { HTMLAttributes, ReactNode } from 'react'; type Props = { className?: string; children?: ReactNode; pseudoElementOnly?: boolean; } & HTMLAttributes<HTMLSpanElement>; export default function AlignmentHelper({ className, children, pseudoElementOnly, ...props }: Props): import("react/jsx-runtime").JSX.Element; export {};