| 18 | ] as const; |
| 19 | |
| 20 | export interface ButtonExampleProps { |
| 21 | label?: string; |
| 22 | variant?: "default" | "secondary" | "destructive" | "outline" | "ghost"; |
| 23 | size?: "sm" | "default" | "lg"; |
| 24 | primary?: string; |
| 25 | } |
| 26 | |
| 27 | export const ButtonExampleScene = (p: ButtonExampleProps = {}) => { |
| 28 | // Timeline owns `state` via the interpolated style — never a flat prop. |
nothing calls this directly
no outgoing calls
no test coverage detected