mirror of
https://github.com/excalidraw/excalidraw.git
synced 2025-08-17 23:39:46 +02:00

Co-authored-by: Maielo <maielo.mv@gmail.com> Co-authored-by: dwelle <luzar.david@gmail.com> Co-authored-by: Aakansha Doshi <aakansha1216@gmail.com>
8 lines
195 B
TypeScript
8 lines
195 B
TypeScript
import { ReactNode } from "react";
|
|
|
|
const PickerHeading = ({ children }: { children: ReactNode }) => (
|
|
<div className="color-picker__heading">{children}</div>
|
|
);
|
|
|
|
export default PickerHeading;
|