mirror of
https://github.com/MODSetter/SurfSense.git
synced 2026-04-25 16:56:22 +02:00
28 lines
615 B
TypeScript
28 lines
615 B
TypeScript
"use client";
|
|
|
|
import { useMarkToolbarButton, useMarkToolbarButtonState } from "platejs/react";
|
|
import type * as React from "react";
|
|
|
|
import { ToolbarButton } from "./toolbar";
|
|
|
|
export function MarkToolbarButton({
|
|
clear,
|
|
nodeType,
|
|
...props
|
|
}: React.ComponentProps<typeof ToolbarButton> & {
|
|
nodeType: string;
|
|
clear?: string[] | string;
|
|
}) {
|
|
const state = useMarkToolbarButtonState({ clear, nodeType });
|
|
const { props: buttonProps } = useMarkToolbarButton(state);
|
|
|
|
return (
|
|
<ToolbarButton
|
|
{...props}
|
|
{...buttonProps}
|
|
onMouseDown={(e: React.MouseEvent) => {
|
|
e.preventDefault();
|
|
}}
|
|
/>
|
|
);
|
|
}
|