UNPKG

@oslokommune/punkt-react

Version:

React komponentbibliotek til Punkt, et designsystem laget av Oslo Origo

11 lines (10 loc) 382 B
import { HTMLAttributes } from 'react'; import { Booleanish } from '../../shared-types'; interface IPktIcon extends HTMLAttributes<HTMLElement> { name?: string; path?: string; ariaHidden?: Booleanish; ariaLabel?: string; } export declare const PktIcon: import('react').ForwardRefExoticComponent<IPktIcon & import('react').RefAttributes<HTMLSpanElement>>; export {};