Icons
The icons represent various data types and elements that are relevant to Xata.
You can import and use the icons in your components as follows:
import { ArrayIcon } from '@internal/icons';
export const MyComponent = () => {
return <ArrayIcon size={16} />;
};
When using the icons in our projects, please adhere to the following guidelines:
- Minimum Size: The icons should not be used at a size smaller than
16px
in width and height. This corresponds tosize={16}
.