@fidely-ui/react
Version:
Fidely UI is a modern, beautifully crafted React design system powered by Ark UI and Panda CSS, delivering accessible and themeable components for building exceptional web apps
22 lines (21 loc) • 715 B
JavaScript
'use client';
import { jsx as _jsx } from "react/jsx-runtime";
import { forwardRef } from 'react';
import { styled } from '@fidely-ui/styled-system/jsx';
import { divider, } from '@fidely-ui/styled-system/patterns';
import { splitProps } from '../../utils/split-props';
/**
* Center component
*
* Provides a flexible box layout system using Panda's center pattern.
*/
export const Divider = forwardRef(function Divider(props, ref) {
const [patternProps, restProps] = splitProps(props, [
'orientation',
'thickness',
'color',
]);
const styles = divider.raw(patternProps);
return _jsx(styled.div, { ref: ref, ...styles, ...restProps });
});
Divider.displayName = 'Divider';