| 1 | import { Show } from '@builder.io/mitosis'; |
| 2 | |
| 3 | export interface ButtonProps { |
| 4 | attributes?: any; |
| 5 | text?: string; |
| 6 | link?: string; |
| 7 | openLinkInNewTab?: boolean; |
| 8 | } |
| 9 | |
| 10 | export default function Button(props: ButtonProps) { |
| 11 | return ( |
nothing calls this directly
no outgoing calls
no test coverage detected
searching dependent graphs…