diff --git a/src/bootstrap/Modal.md b/src/bootstrap/Modal.md
index 1744070..08d4878 100644
--- a/src/bootstrap/Modal.md
+++ b/src/bootstrap/Modal.md
@@ -1,8 +1,19 @@
Bootstrap modal component.
-it's required to have an element `
` somewhere on
+It's required to have an element `
` somewhere on
the page since modals are rendered in portals.
+Modals also have three optional sizes, which can be defined through the `size`
+prop:
+
+- small - `sm`
+- large - `lg`
+- extra-large - `xl`
+
+For more details please visit Bootstrap
+
+documentation.
+
```js
```
@@ -14,7 +25,7 @@ import { useState } from "react";
const [shown, setShown] = useState(false);
<>
-
+