1
0
Fork 0
VaultUI/src/elements/ReactMargin.tsx

15 lines
241 B
TypeScript
Raw Normal View History

2021-05-22 10:51:06 +01:00
import { JSX } from "preact";
export type MarginProps = {
children?: JSX.Element|JSX.Element[];
};
export function Margin(props: MarginProps): JSX.Element {
return (
<div class="uk-margin">
{props.children}
</div>
)
}