UNPKG

galileo-ui

Version:

My Design System Components

10 lines (9 loc) 274 B
import React, { ReactNode } from "react"; interface FlexrowProps { jarak?: string; justify?: string; align?: string; children?: ReactNode; } export default function StkFlexrow({ jarak, justify, align, children }: FlexrowProps): React.JSX.Element; export {};