13 lines
199 B
TypeScript
13 lines
199 B
TypeScript
export type ClColPassThrough = {
|
|
className?: string;
|
|
};
|
|
|
|
export type ClColProps = {
|
|
className?: string;
|
|
pt?: ClColPassThrough;
|
|
span?: number;
|
|
offset?: number;
|
|
push?: number;
|
|
pull?: number;
|
|
};
|