import React from "react"; type Props = React.HTMLAttributes; // TODO: This should be a `` but I couldn't figure out how to style it with css grid const LibraryButton = (props: Props) => { const { children, ...passThroughProps } = props; return ( {children} ); }; export default LibraryButton;