UNPKG

@dnb/eufemia

Version:

DNB Eufemia Design System UI Library

16 lines (15 loc) 645 B
import React from 'react'; import type { IconIcon, IconSize } from '../../icon/Icon'; type ButtonContentProps = { title?: React.ReactNode; content?: React.ReactNode; custom_content?: React.ReactNode; icon?: IconIcon | React.ReactNode | ((...args: any[]) => any); icon_size?: IconSize | string | number; bounding?: boolean; skeleton?: boolean; isIconOnly?: boolean; iconElement?: React.ReactNode; }; export default function ButtonContent({ title, content, custom_content, icon, icon_size, bounding, skeleton, isIconOnly, iconElement, }: ButtonContentProps): import("react/jsx-runtime").JSX.Element; export {};