1import { ark } from '@ark-ui/solid' 2import type { ComponentProps } from 'solid-js' 3import { styled } from 'styled-system/jsx' 4import { button } from 'styled-system/recipes' 5 6export type ButtonProps = ComponentProps<typeof Button> 7export const Button = styled(ark.button, button)