import { Button } from '@remix-run/ui/button' import { css } from '@remix-run/ui' import { theme } from '@remix-run/ui/theme' /** * @name Button Component * @description The Button component wraps the low-level style primitives and accepts a tone prop for quick theming. * @layout center * @order 2 */ export default function Example() { return () => (
) } const buttonRowCss = css({ display: 'flex', alignItems: 'center', gap: theme.space.sm, })