import React from 'react' import { TipIcon, ChatIcon, WarningIcon } from '@freesewing/react/components/Icon' /** * A component to display a mini tip * * @component * @param {object} props - All component props * @param {JSX.Element} props.children - The component children, will be rendered inside the mini tip * @returns {JSX.Element} */ export const MiniTip = ({ children }) => (
{children}
) /** * A component to display a mini note * * @component * @param {object} props - All component props * @param {JSX.Element} props.children - The component children, will be rendered inside the mini note * @returns {JSX.Element} */ export const MiniNote = ({ children }) => (
{children}
) /** * A component to display a mini warning * * @component * @param {object} props - All component props * @param {JSX.Element} props.children - The component children, will be rendered inside the mini warning * @returns {JSX.Element} */ export const MiniWarning = ({ children }) => (
{children}
)