@amaui/ui-react
Version:
UI for React
15 lines • 490 B
JavaScript
import _objectWithoutProperties from "@babel/runtime/helpers/objectWithoutProperties";
const _excluded = ["children"];
import React from 'react';
import { reset } from '@amaui/style-react';
const useReset = reset();
const Reset = props => {
const {
children
} = props,
other = _objectWithoutProperties(props, _excluded);
useReset(other);
return /*#__PURE__*/React.createElement(React.Fragment, null, children);
};
Reset.displayName = 'amaui-Reset';
export default Reset;