@codecademy/gamut

73.6.173.6.2-alpha.3e37cd.0
dist/List/List.d.ts
~dist/List/List.d.tsModified
+2−1
Index: package/dist/List/List.d.ts
===================================================================
--- package/dist/List/List.d.ts
+++ package/dist/List/List.d.ts
@@ -1,10 +1,11 @@
 import { ComponentProps } from 'react';
 import * as React from 'react';
 import { BoxProps } from '../Box';
+import { DataAttributes } from '../utils';
 import { ListEl } from './elements';
 import { AllListProps } from './types';
-export interface ListProps extends AllListProps<ComponentProps<typeof ListEl>> {
+export interface ListProps extends AllListProps<ComponentProps<typeof ListEl>>, DataAttributes {
     /** Whether List should be an ol, ul element, or table */
     as?: 'ol' | 'ul' | 'table';
     /** Whether a placeholder width should be set when loading */
     loading?: boolean;