10 lines
151 B
TypeScript
10 lines
151 B
TypeScript
export type ClRowPassThrough = {
|
|
className?: string;
|
|
};
|
|
|
|
export type ClRowProps = {
|
|
className?: string;
|
|
pt?: ClRowPassThrough;
|
|
gutter?: number;
|
|
};
|