mirror of
https://github.com/rzmk/learnhouse.git
synced 2025-12-19 04:19:25 +00:00
31 lines
881 B
TypeScript
31 lines
881 B
TypeScript
import { NodeViewContent, NodeViewWrapper } from "@tiptap/react";
|
|
import { AlertCircle } from "lucide-react";
|
|
import React from "react";
|
|
import styled from "styled-components";
|
|
|
|
function InfoCalloutComponent(props: any) {
|
|
return (
|
|
<NodeViewWrapper>
|
|
<InfoCalloutWrapper className="flex space-x-2 items-center bg-blue-200 rounded-lg text-blue-900 px-3 shadow-inner" contentEditable={props.extension.options.editable}>
|
|
<AlertCircle /> <NodeViewContent contentEditable={props.extension.options.editable} className="content" />
|
|
</InfoCalloutWrapper>
|
|
</NodeViewWrapper>
|
|
);
|
|
}
|
|
|
|
const InfoCalloutWrapper = styled.div`
|
|
svg{
|
|
padding: 3px;
|
|
}
|
|
|
|
.content {
|
|
margin: 5px;
|
|
padding: 0.5rem;
|
|
border: ${(props) => (props.contentEditable ? "2px dashed #1f3a8a12" : "none")};
|
|
border-radius: 0.5rem;
|
|
}
|
|
`;
|
|
|
|
|
|
|
|
export default InfoCalloutComponent;
|