UNPKG
mui-tw-components
Version:
latest (1.0.1)
1.0.1
1.0.0
````markdown # **mui-tw-components - Reusable UI Components**
mui-tw-components
/
dist
/
components
/
OverflowSet.d.ts
9 lines
(8 loc)
•
245 B
TypeScript
View Raw
1
2
3
4
5
6
7
8
9
import
React
from
'react'
;
interface
OverflowSetProps
{
children
:
React
.
ReactNode
[];
maxVisibleItems
:
number
;
containerStyles
?:
string
; }
declare
const
CustomOverflowSet
:
React
.
FC
<
OverflowSetProps
>;
export
default
CustomOverflowSet
;