@audira/carbon-react-native
Version:
Build React Native apps with component and shared patterns using Carbon
19 lines (18 loc) • 412 B
JavaScript
;
import { forwardRef } from 'react';
import { Base } from "../base/index.js";
import { jsx as _jsx } from "react/jsx-runtime";
export const Small = /*#__PURE__*/forwardRef(function Small({
switchProps,
...props
}, ref) {
return /*#__PURE__*/_jsx(Base, {
...props,
switchProps: {
...switchProps,
size: 'small'
},
ref: ref
});
});
//# sourceMappingURL=Small.js.map