UNPKG

@platformbuilders/fluid-react

Version:
7 lines (6 loc) 245 B
import { jsx as _jsx } from "react/jsx-runtime"; import { CustomLink } from './styles'; const Link = ({ onPress, children, ...rest }) => { return (_jsx(CustomLink, { onClick: onPress, ...rest, children: children })); }; export default Link;