@heycar-uikit/core
Version:
The React UI library from HeyCar
18 lines (17 loc) • 505 B
TypeScript
/// <reference types="react" />
import React from 'react';
import { HTMLAttributes } from "react";
interface ButtonIcon {
/**
* The content of the button
*/
children: React.ReactNode;
/**
* Side of the icon place
*/
side: "left" | "right";
className?: string;
}
type ButtonIconProps = ButtonIcon & HTMLAttributes<HTMLSpanElement>;
declare function ButtonIcon$0({ children, className, side }: ButtonIconProps): React.JSX.Element;
export { ButtonIcon$0 as default };