UNPKG

@devopness/ui-react

Version:

Devopness Design System React Components - Painless essential DevOps to everyone

25 lines (24 loc) 632 B
type ArrowHeadProps = { /** Fill color for the arrow shape */ fill: string; /** Stroke color for the arrow shape border */ stroke: string; /** CSS styles to apply to the arrow shape */ style?: React.CSSProperties; /** * Event handler called when the arrow is clicked. */ onClick?: React.MouseEventHandler; }; /** * An arrow separator * * @example * <ArrowHead * fill="#000000" * stroke="#FFFFFF" * /> */ declare const ArrowHead: ({ fill, stroke, style, onClick }: ArrowHeadProps) => import("react/jsx-runtime").JSX.Element; export type { ArrowHeadProps }; export { ArrowHead };