import { css } from '@remix-run/ui' import * as button from '@remix-run/ui/button' import { Glyph } from '@remix-run/ui/glyph' import { theme } from '@remix-run/ui/theme' /** * @name Basic Button * @description The default button contract supports both ordinary actions and link-shaped navigation. * @layout center * @order 1 */ export default function Example() { return () => (
View button docs
) } const buttonRowCss = css({ display: 'flex', alignItems: 'center', gap: theme.space.sm, })