): JSX.Element {
+ return (
+
+ {React.Children.only(children)}
+
+ );
+}
diff --git a/src/components/Icon/BigIcon/__snapshots__/BigIcon.test.tsx.snap b/src/components/Icon/BigIcon/__snapshots__/BigIcon.test.tsx.snap
new file mode 100644
index 00000000..a2a8182e
--- /dev/null
+++ b/src/components/Icon/BigIcon/__snapshots__/BigIcon.test.tsx.snap
@@ -0,0 +1,106 @@
+// Vitest Snapshot v1, https://vitest.dev/guide/snapshot.html
+
+exports[`BigIcon > renders a destructive big icon 1`] = `
+
+`;
+
+exports[`BigIcon > renders a large big icon 1`] = `
+
+`;
+
+exports[`BigIcon > renders a medium big icon 1`] = `
+
+`;
+
+exports[`BigIcon > renders a small big icon 1`] = `
+
+`;
+
+exports[`BigIcon > renders a success big icon 1`] = `
+
+`;
diff --git a/src/components/Icon/BigIcon/index.ts b/src/components/Icon/BigIcon/index.ts
new file mode 100644
index 00000000..613635d4
--- /dev/null
+++ b/src/components/Icon/BigIcon/index.ts
@@ -0,0 +1,17 @@
+/*
+Copyright 2024 New Vector Ltd
+
+Licensed under the Apache License, Version 2.0 (the "License");
+you may not use this file except in compliance with the License.
+You may obtain a copy of the License at
+
+ http://www.apache.org/licenses/LICENSE-2.0
+
+Unless required by applicable law or agreed to in writing, software
+distributed under the License is distributed on an "AS IS" BASIS,
+WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+See the License for the specific language governing permissions and
+limitations under the License.
+*/
+
+export { BigIcon } from "./BigIcon";
diff --git a/src/index.ts b/src/index.ts
index 7017a0bd..557e658a 100644
--- a/src/index.ts
+++ b/src/index.ts
@@ -37,6 +37,7 @@ export {
H6,
} from "./components/Typography/Heading";
export { IndicatorIcon } from "./components/Icon/IndicatorIcon/IndicatorIcon";
+export { BigIcon } from "./components/Icon/BigIcon";
export { Link } from "./components/Link/Link";
export { NavBar, NavItem } from "./components/Nav";
export { Menu } from "./components/Menu/Menu";