5 lines
144 B
TypeScript
5 lines
144 B
TypeScript
|
import type { Theme } from '../../_mixins';
|
||
|
declare const rowDark: Theme<'Row'>;
|
||
|
export default rowDark;
|
||
|
export type RowTheme = typeof rowDark;
|