1
Fork 0
mirror of https://github.com/Steffo99/festa.git synced 2024-10-16 15:07:27 +00:00
festa/components/generic/toolbar/tool.tsx

23 lines
530 B
TypeScript

import { default as classNames } from "classnames"
import { ComponentPropsWithoutRef, memo } from "react"
import style from "./tool.module.css"
export type ToolProps = ComponentPropsWithoutRef<"button">
/**
* A single tool button displayed in the toolbar.
*/
export const Tool = memo((props: ToolProps) => {
return (
<button
{...props}
className={classNames(
style.toolbarTool,
props.className,
)}
/>
)
})
Tool.displayName = "Tool"