import { Button as InnerButton, Flex, FlexItem } from '@wordpress/components';
import { more } from '@wordpress/icons';
const Button = ( props: React.ComponentProps< typeof InnerButton > ) => (
);
const ButtonExample = () => {
return (
Small Buttons
Regular Buttons
);
};
export default ButtonExample;