diff --git a/packages/core/src/layout/Header/Burst.js b/packages/core/src/layout/Header/Burst.js deleted file mode 100644 index 558419cb00..0000000000 --- a/packages/core/src/layout/Header/Burst.js +++ /dev/null @@ -1,34 +0,0 @@ -import React from 'react'; -import { makeStyles } from '@material-ui/core'; - -const useStyles = makeStyles(theme => ({ - burst: { - position: 'absolute', - top: 0, - left: 0, - height: '100%', - width: '100%', - 'z-index': -1, - }, - /* base style of burst shape SVGs */ - burstShape: { - position: 'absolute', - right: 0, - height: '100%', - 'background-repeat': 'no-repeat', - 'background-size': 'cover', - opacity: 0.1, - }, -})); - -const Burst = ({ theme }) => { - const classes = useStyles(); - - return ( -