handy online tools for AT Protocol boat.kelinci.net
atproto bluesky atcute typescript solidjs
20
fork

Configure Feed

Select the types of activity you want to include in your feed.

fix: pass disabled to button

Mary 7bf6ce44 ce6c3e3d

+6 -1
+6 -1
src/components/inputs/button.tsx
··· 26 26 27 27 const Button = (props: ButtonProps) => { 28 28 return ( 29 - <button type={props.type ?? 'button'} class={buttonStyles(props)} onClick={props.onClick}> 29 + <button 30 + type={props.type ?? 'button'} 31 + disabled={props.disabled} 32 + class={buttonStyles(props)} 33 + onClick={props.onClick} 34 + > 30 35 {props.children} 31 36 </button> 32 37 );