export default function BlueButton({ children, ...props }) { return ( {children} ) } export function RedButton({ children, ...props }) { return ( {children} ) } export function GreenButton({ children, ...props }) { return ( {children} ) }