diff --git a/src/components/Icons/Title.tsx b/src/components/Icons/Title.tsx index b74acb5..942ae99 100644 --- a/src/components/Icons/Title.tsx +++ b/src/components/Icons/Title.tsx @@ -1,7 +1,12 @@ -export const Title = () => ( +interface propsType { + width?: string; + height?: string; +} + +export const Title = ({ width = "100%", height = "100%" }: propsType) => (