UNPKG

@workday/canvas-kit-react

Version:

The parent module that contains all Workday Canvas Kit React components

10 lines (9 loc) 428 B
import React from 'react'; import { createComponent } from '@workday/canvas-kit-react/common'; import { Hyperlink } from '@workday/canvas-kit-react/button'; export const ToastLink = createComponent('a')({ displayName: 'Toast.Link', Component: ({ children, href, ...elemProps }, ref, Element) => { return (React.createElement(Hyperlink, { ref: ref, href: href, as: Element, ...elemProps }, children)); }, });