mirror of
https://github.com/whscullin/apple2js.git
synced 2024-01-12 14:14:38 +00:00
13 lines
264 B
TypeScript
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>
|
|
);
|