summaryrefslogtreecommitdiffstats
path: root/packages/excalidraw/components/Paragraph.tsx
blob: 7b3b2ff16c04e801a03dfa16b62ce04caebb4fb8 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
export const Paragraph = (props: {
  children: React.ReactNode;
  style?: React.CSSProperties;
}) => {
  return (
    <p className="excalidraw__paragraph" style={props.style}>
      {props.children}
    </p>
  );
};