diff options
Diffstat (limited to 'packages/website/ts/@next/components/hero.tsx')
-rw-r--r-- | packages/website/ts/@next/components/hero.tsx | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/packages/website/ts/@next/components/hero.tsx b/packages/website/ts/@next/components/hero.tsx index d17856b8a..3a16c12bb 100644 --- a/packages/website/ts/@next/components/hero.tsx +++ b/packages/website/ts/@next/components/hero.tsx @@ -4,8 +4,8 @@ import styled from 'styled-components'; interface Props { title: string; description: string; - figure?: React.Node; - actions?: React.Node; + figure?: React.ReactNode; + actions?: React.ReactNode; } export const Hero = (props: Props) => ( |