mirror of
https://github.com/pawelmalak/flame.git
synced 2026-02-28 09:23:12 +08:00
11 lines
258 B
TypeScript
11 lines
258 B
TypeScript
import { ReactNode } from 'react';
|
|
import classes from './InputGroup.module.css';
|
|
|
|
interface Props {
|
|
children: ReactNode;
|
|
}
|
|
|
|
export const InputGroup = (props: Props): JSX.Element => {
|
|
return <div className={classes.InputGroup}>{props.children}</div>;
|
|
};
|