New icons, better page transition, truncated popper, adds disallowSpaces option to binders, delete and edit buttons

This commit is contained in:
Emma
2023-06-14 03:09:27 -06:00
parent e78e4304a4
commit f84ef2ee19
21 changed files with 277 additions and 60 deletions

View File

@@ -0,0 +1,15 @@
import { FC, PropsWithChildren } from 'react';
import { Poppable } from '../../lib/poppables/components/poppable';
export const Truncate: FC<PropsWithChildren> = ({children}) => {
return (
<Poppable
content={children}
preferredAlign="centered"
preferredEdge="top"
>
<p className="truncate max-w-full underline">{children}</p>
</Poppable>
);
}