w-aura/src/components/palmistry/input-wrapper/input-wrapper.tsx
2024-03-11 02:08:19 +07:00

14 lines
220 B
TypeScript

import './input-wrapper.css';
type Props = {
children: React.ReactNode;
};
export default function InputWrapper(props: Props) {
return (
<div className="input-wrapper">
{props.children}
</div>
);
}