Preview:```ts
import React from "react"
type Button = {_type: "button"; button: string}
type Icon = {_type: "icon"; icon: string}
export type ButtonOrIcon = Button | Icon
export type Conditional1<P extends ButtonOrIcon> =
P["_type"] extends "button"
? Button
: P["_type"] extends "icon"
? Icon
: never
...```
You can choose specific lines to embed by selecting them before copying the link.