BottomFixedArea(非推奨)
FloatAreaと役割が重複しているためBottomFixedAreaは非推奨です。より柔軟に使えるFloatAreaを使ってください。
画面下部に固定で表示する操作パネルです。主にモーダルなUIを作るために使います。
Props
description
 string   number   false   true   ReactElement<any, string | JSXElementConstructor<any>>   Iterable<ReactNode>   ReactPortal  
この領域の説明
primaryButton
 FunctionComponentElement<{ size?: "s" | "default"; disabledDetail?: { icon?: FunctionComponent<{}>; message: ReactNode; }; prefix?: ReactNode; suffix?: ReactNode; wide?: boolean; variant?: Variant; loading?: boolean; } & { ...; } & ElementProps & RefAttributes<...>>   FunctionComponentElement<Omit<BaseProps, "variant"> & { elementAs?: ElementType; variant?: AnchorButtonVariant; } & ElementProps<ElementType> & ElementRefProps<...>>  
表示する Button または AnchorButton (variant="primary" である必要がある)
secondaryButton
 FunctionComponentElement<{ size?: "s" | "default"; disabledDetail?: { icon?: FunctionComponent<{}>; message: ReactNode; }; prefix?: ReactNode; suffix?: ReactNode; wide?: boolean; variant?: Variant; loading?: boolean; } & { ...; } & ElementProps & RefAttributes<...>>   FunctionComponentElement<Omit<BaseProps, "variant"> & { elementAs?: ElementType; variant?: AnchorButtonVariant; } & ElementProps<ElementType> & ElementRefProps<...>>  
表示する Button または AnchorButton (variant="secondary" である必要がある)
tertiaryLinks
 (Omit<DetailedHTMLProps<ButtonHTMLAttributes<HTMLButtonElement>, HTMLButtonElement>, "ref"> & { ...; } & { ...; })[]  
表示する tertialy link のプロパティの配列
zIndex
 number  
コンポーネントに適用する z-index 値
ref
 (instance: HTMLDivElement) => void   RefObject<HTMLDivElement>