apple2js/js/components/Inset.tsx

13 lines
264 B
TypeScript

import { h, FunctionalComponent } from 'preact';
/**
* Convenience component for a nice beveled border.
*
* @returns Inset component
*/
export const Inset: FunctionalComponent = ({ children }) => (
<div className="inset">
{children}
</div>
);