import classNames from 'clsx'; import React from 'react'; interface IBackgroundShapes { /** Whether the shapes should be absolute positioned or fixed. */ position?: 'fixed' | 'absolute', } /** Gradient that appears in the background of the UI. */ const BackgroundShapes: React.FC = ({ position = 'fixed' }) => (
); export default BackgroundShapes;