mirror of
https://github.com/nicetry247/offlineacademy.git
synced 2026-07-26 11:58:44 +00:00
8 lines
340 B
TypeScript
8 lines
340 B
TypeScript
declare module '@radix-ui/react-separator' {
|
|
import * as React from 'react'
|
|
export interface SeparatorProps extends React.HTMLAttributes<HTMLDivElement> {
|
|
orientation?: 'horizontal' | 'vertical'
|
|
decorative?: boolean
|
|
}
|
|
export const Root: React.ForwardRefExoticComponent<SeparatorProps & React.RefAttributes<HTMLDivElement>>
|
|
} |