mirror of
https://github.com/movie-web/movie-web.git
synced 2024-11-15 13:25:13 +01:00
18 lines
326 B
TypeScript
18 lines
326 B
TypeScript
export interface ButtonControlProps {
|
|
onClick?: () => void;
|
|
children?: React.ReactNode;
|
|
className?: string;
|
|
}
|
|
|
|
export function ButtonControl({
|
|
onClick,
|
|
children,
|
|
className,
|
|
}: ButtonControlProps) {
|
|
return (
|
|
<button onClick={onClick} className={className} type="button">
|
|
{children}
|
|
</button>
|
|
);
|
|
}
|