Create a Button component with default variant and size props.
function Button({ variant = 'primary', size = 'md', children }) { // Your code here } export default function App() { return <Button>Click Me</Button>; }