@kubit-ui-web/react-components
Version:
Kubit React Components is a customizable, accessible library of React web components, designed to enhance your application's user experience
10 lines (9 loc) • 411 B
TypeScript
import React from 'react';
import { IMediaButtonStandAlone } from './types/mediaButton';
/**
* @description
* MediaButton component is used to show a button with an icon.
* @param {React.PropsWithChildren<IMediaButtonStandAlone>} props
* @returns {JSX.Element}
*/
export declare const MediaButtonStandalone: React.ForwardRefExoticComponent<IMediaButtonStandAlone & React.RefAttributes<HTMLButtonElement>>;