feat: Contentstack <-> ImageVault integration
This commit is contained in:
31
rte/components/EmbedBtn.tsx
Normal file
31
rte/components/EmbedBtn.tsx
Normal file
@@ -0,0 +1,31 @@
|
||||
import React, { PropsWithChildren } from 'react';
|
||||
import { Tooltip } from '@contentstack/venus-components';
|
||||
|
||||
type EmbedBtnProps = PropsWithChildren & {
|
||||
content: string;
|
||||
onClick: (e: unknown) => void;
|
||||
title: string;
|
||||
};
|
||||
|
||||
export default function EmbedBtn({
|
||||
content,
|
||||
title,
|
||||
onClick,
|
||||
children,
|
||||
}: EmbedBtnProps) {
|
||||
return (
|
||||
<Tooltip position="bottom" content={content}>
|
||||
<button
|
||||
id={title}
|
||||
type="button"
|
||||
onClick={(e) => {
|
||||
e?.preventDefault();
|
||||
e?.stopPropagation();
|
||||
onClick(e);
|
||||
}}
|
||||
>
|
||||
{children}
|
||||
</button>
|
||||
</Tooltip>
|
||||
);
|
||||
}
|
||||
Reference in New Issue
Block a user