import { ArrowUpOnSquareIcon, CameraIcon } from '@heroicons/react/24/outline'; import React from 'react'; interface ISettingsProps { saveEditorAsJSON: () => void saveEditorAsSVG: () => void }; export function Settings(props: ISettingsProps): JSX.Element { return (
); }